Terraform conditionals

From wikinotes
Revision as of 17:46, 25 September 2022 by Will (talk | contribs) (Created page with "The only conditional is the ternary operator. = Ternary = <blockquote> <syntaxhighlight lang="tf"> condition ? true_val : false_val </syntaxhighlight> </blockquote><!-- Ternary -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

The only conditional is the ternary operator.

Ternary

condition ? true_val : false_val