opentofu/command/test-fixtures/push-tfvars/main.tf
Mitchell Hashimoto 609219fc65 command/meta: validate config immediately
* config: test for validating multi-vars (passes)

* command/plan: test invalid run

* command/meta: validate module on load
2016-09-03 15:26:49 -07:00

23 lines
250 B
HCL

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