You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/testdata/apply-ephemeral-variable/main.tf

20 lines
249 B

variable "foo" {
type = string
ephemeral = true
}
variable "bar" {
type = string
default = null
ephemeral = true
}
variable "unused" {
type = map(string)
default = null
}
resource "test_instance" "foo" {
ami = "bar"
}