Terraform operators

From wikinotes
Revision as of 17:45, 25 September 2022 by Will (talk | contribs) (Created page with "= Logical = <blockquote> <syntaxhighlight lang="tf"> && # and || # or </syntaxhighlight> </blockquote><!-- Logical --> = Arithmetic = <blockquote> <syntaxhighlight lang="tf"> *, /, % # multiply, divide, modulo +, - # add, subtract </syntaxhighlight> </blockquote><!-- Arithmetic --> = Equality = <blockquote> <syntaxhighlight lang="tf"> ==, != # equal, not equal >, >=, <, <= # range </syntaxhighlight> </blockquote><!-- Equality -->")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Logical

&&  # and
||  # or

Arithmetic

*, /, %  # multiply, divide, modulo
+, -     # add, subtract

Equality

==, !=        # equal, not equal
>, >=, <, <=  # range