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

10 lines
91 B
Terraform
Raw Normal View History

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