mirror of
https://github.com/opentffoundation/opentf.git
synced 2026-01-21 17:01:09 -05:00
11 lines
251 B
HCL
11 lines
251 B
HCL
// At the time of writing Terraform doesn't formally support a boolean
|
|
// type, but historically this has magically worked. Lots of TF code
|
|
// relies on this so we test it now.
|
|
variable "a" {
|
|
default = true
|
|
}
|
|
|
|
variable "b" {
|
|
default = false
|
|
}
|