17 lines
342 B
Plaintext
17 lines
342 B
Plaintext
// 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
|
|
}
|
|
|
|
Lots of TF code
|
|
// relies on this so we test it now.
|
|
variable "a" {
|
|
default = true
|
|
}
|
|
|
|
variable "b" {
|
|
default = false
|
|
}
|