mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
* ephemerals: allow root ephemeral outputs in stacks and test * remember to set new opt for apply stage
8 lines
114 B
HCL
8 lines
114 B
HCL
variable "foo" {
|
|
ephemeral = true
|
|
type = string
|
|
}
|
|
output "value" {
|
|
value = var.foo
|
|
ephemeral = true
|
|
}
|