blob: e7e747a23ea85dc4ea2cf1a609e12598b1402684 [file] [log] [blame]
locals {
foo = "bar"
}
component "vault-config" {
source = "./"
inputs = {
ssh_key_private = component.boundary.ssh_key_private
bar = local.foo
}
}
component "boundary" {
source = "./"
inputs = {
boundary_vault_token = component.vault-config.boundary_vault_token
}
}