mirror of
https://github.com/hashicorp/terraform.git
synced 2026-05-28 04:03:27 -04:00
23 lines
276 B
HCL
23 lines
276 B
HCL
variable "false_true" {
|
|
const = false
|
|
}
|
|
|
|
variable "true_false" {
|
|
const = true
|
|
}
|
|
|
|
variable "false_false_true" {
|
|
const = false
|
|
}
|
|
|
|
variable "true_true_false" {
|
|
const = true
|
|
}
|
|
|
|
variable "false_true_false" {
|
|
const = false
|
|
}
|
|
|
|
variable "true_false_true" {
|
|
const = true
|
|
}
|