github.com/hugorut/terraform@v1.1.3/website/docs/language/functions/pow.mdx (about)

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