mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-07 01:00:44 -05:00
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"
|
|
}
|