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

23 lines
250 B
Terraform
Raw Normal View History

2015-04-08 00:34:06 +02:00
variable "foo" {}
2015-04-08 00:34:06 +02:00
variable "bar" {}
variable "baz" {
type = "map"
default = {
2016-07-27 18:08:59 +02:00
"A" = "a"
}
}
variable "fob" {
type = "list"
default = ["a", "quotes \"in\" quotes"]
}
2015-04-08 00:34:06 +02:00
resource "test_instance" "foo" {}
atlas {
name = "foo"
2015-04-08 00:34:06 +02:00
}