mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-14 02:32:39 -06:00
609219fc65
* config: test for validating multi-vars (passes) * command/plan: test invalid run * command/meta: validate module on load
23 lines
250 B
HCL
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"
|
|
}
|