mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -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
|
|
}
|