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/push-tfvars/main.tf

23 lines
250 B

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