terraform/command/testdata/push-tfvars/main.tf

23 lines
250 B
HCL

variable "foo" {}
variable "bar" {}
variable "baz" {
type = "map"
default = {
"A" = "a"
}
}
variable "fob" {
type = "list"
default = ["a", "quotes \"in\" quotes"]
}
resource "test_instance" "foo" {}
atlas {
name = "foo"
}