blob: 27b55d56cea98bf422e55d3cfec077e237b04e58 [file] [log] [blame]
variable "msg" {
type = string
default = "default"
}
stack "child" {
source = "../variable-output-roundtrip"
inputs = {
msg = var.msg
}
}
output "msg" {
type = string
value = stack.child.msg
}