You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/stacks/stackruntime/testdata/mainbundle/test/validate-cyclic-dependency/validate-cyclic-dependency....

19 lines
295 B

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
}
}