mirror of
https://github.com/hashicorp/terraform.git
synced 2026-03-22 10:31:22 -04:00
14 lines
174 B
HCL
14 lines
174 B
HCL
|
|
variable "input" {
|
|
type = number
|
|
}
|
|
|
|
variable "input2" {
|
|
type = number
|
|
ephemeral = true
|
|
default = 0
|
|
}
|
|
|
|
output "output" {
|
|
value = var.input > 5 ? var.input : null
|
|
}
|