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

9 lines
113 B
HCL

variable "msg" {
type = string
default = "default"
}
output "msg" {
type = string
value = var.msg
}