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

10 lines
102 B
Terraform
Raw Normal View History

2014-07-21 17:34:44 +02:00
variable "foo" {
default = "bar"
}
variable "foo" {
default = {
"foo" = "bar"
}
}