2018-05-12 18:39:29 +02:00
|
|
|
---
|
2021-12-15 03:41:17 +01:00
|
|
|
page_title: index - Functions - Configuration Language
|
|
|
|
description: The index function finds the element index for a given value in a list.
|
2018-05-12 18:39:29 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# `index` Function
|
|
|
|
|
|
|
|
`index` finds the element index for a given value in a list.
|
|
|
|
|
|
|
|
```hcl
|
|
|
|
index(list, value)
|
|
|
|
```
|
|
|
|
|
|
|
|
The returned index is zero-based. This function produces an error if the given
|
|
|
|
value is not present in the list.
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> index(["a", "b", "c"], "b")
|
|
|
|
1
|
|
|
|
```
|
|
|
|
|
|
|
|
## Related Functions
|
|
|
|
|
2021-12-15 03:41:17 +01:00
|
|
|
* [`element`](/language/functions/element) retrieves a particular element from a list given
|
2018-05-12 18:39:29 +02:00
|
|
|
its index.
|