github.com/muratcelep/terraform@v1.1.0-beta2-not-internal-4/website/docs/language/functions/pow.html.md (about)

     1  ---
     2  layout: "language"
     3  page_title: "pow - Functions - Configuration Language"
     4  sidebar_current: "docs-funcs-numeric-pow"
     5  description: |-
     6    The pow function raises a number to a power.
     7  ---
     8  
     9  # `pow` Function
    10  
    11  `pow` calculates an exponent, by raising its first argument to the power of the second argument.
    12  
    13  ## Examples
    14  
    15  ```
    16  > pow(3, 2)
    17  9
    18  > pow(4, 0)
    19  1
    20  ```