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

8 lines
93 B
HCL

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