terraform/internal/stacks/stackruntime/testdata/mainbundle/test/sensitive-output-nested/sensitive-output-nested.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

11 lines
136 B
HCL

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