terraform/internal/command/testdata/test/null-outputs/main.tf

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
102 B
Terraform
Raw Permalink Normal View History

variable "input" {
type = number
}
output "output" {
value = var.input > 5 ? var.input : null
}