mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 02:20:07 -04:00
16 lines
239 B
HCL
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
|
|
}
|