terraform/internal/command/testdata/test/ephemeral_input/main.tf
Daniel Schmidt 725add6a1a
test: pass in variables during apply
ephemeral variables need to be re-supplied
2024-10-16 16:30:31 +02:00

7 lines
103 B
HCL

variable "foo" {
ephemeral = true
type = string
}
output "value" {
value = "Hello, World!"
}