terraform/internal/stacks/stackruntime/testdata/mainbundle/test/sensitive-output-as-input/sensitive-output-as-input.tfcomponent.hcl

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

20 lines
235 B
HCL
Raw Permalink Normal View History

stack "sensitive" {
source = "../sensitive-output"
inputs = {
}
}
component "self" {
source = "./"
inputs = {
secret = stack.sensitive.result
}
}
output "result" {
type = string
value = component.self.result
}