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

17 lines
218 B
HCL

variable "msg" {
type = string
default = "default"
}
stack "child" {
source = "../variable-output-roundtrip"
inputs = {
msg = var.msg
}
}
output "msg" {
type = string
value = stack.child.msg
}