mirror of
https://github.com/opentofu/opentofu.git
synced 2025-02-25 18:45:20 -06:00
11 lines
251 B
Terraform
11 lines
251 B
Terraform
|
// 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
|
||
|
}
|