terraform/internal/command/testdata/apply-ephemeral-variable/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
249 B
Terraform
Raw Permalink Normal View History

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"
}