mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-03-13 01:00:50 -04:00
* 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"
|
|
}
|