terraform/internal/stacks/stackruntime/testdata/mainbundle/test/validate-cyclic-dependency/validate-cyclic-dependency.tfcomponent.hcl

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
295 B
HCL
Raw Permalink Normal View History

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