terraform/internal/stacks/stackconfig/testdata/basics-bundle/root/outputs.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

16 lines
239 B
HCL

output "greeting" {
type = string
value = stack.nested.greeting
}
output "sound" {
type = string
value = local.sound
}
output "password" {
type = string
value = "not really"
sensitive = true
ephemeral = true
}