terraform/internal/stacks/stackruntime/testdata/mainbundle/test/sensitive-output-as-input/sensitive-output-as-input.tfcomponent.hcl
Liam Cervante a80220dcc9
stacks: rename .tfstack files to .tfcomponent (#37013)
* stacks: rename .tfstack files to .tfcomponent

* fix consistency issues
2025-05-15 08:33:13 +02:00

19 lines
235 B
HCL

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