terraform/config/test-fixtures/validate-var-default/main.tf

10 lines
91 B
Terraform
Raw Normal View History

2014-07-28 19:43:00 +02:00
variable "foo" {
default = "bar"
}
variable "foo" {
default = {
2014-08-05 07:04:48 +02:00
foo = "bar"
2014-07-28 19:43:00 +02:00
}
}