2018-05-07 03:32:16 +02:00
|
|
|
---
|
|
|
|
layout: "functions"
|
2018-12-20 05:35:11 +01:00
|
|
|
page_title: "pow - Functions - Configuration Language"
|
2018-05-07 03:32:16 +02:00
|
|
|
sidebar_current: "docs-funcs-numeric-pow"
|
|
|
|
description: |-
|
|
|
|
The pow function raises a number to a power.
|
|
|
|
---
|
|
|
|
|
|
|
|
# `pow` Function
|
|
|
|
|
2019-01-17 01:33:57 +01:00
|
|
|
-> **Note:** This page is about Terraform 0.12 and later. For Terraform 0.11 and
|
|
|
|
earlier, see
|
|
|
|
[0.11 Configuration Language: Interpolation Syntax](../../configuration-0-11/interpolation.html).
|
|
|
|
|
2018-12-11 01:14:33 +01:00
|
|
|
`pow` calculates an exponent, by raising its first argument to the power of the second argument.
|
2018-05-07 03:32:16 +02:00
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> pow(3, 2)
|
|
|
|
9
|
|
|
|
> pow(4, 0)
|
|
|
|
1
|
|
|
|
```
|