2018-05-07 03:32:16 +02:00
|
|
|
---
|
|
|
|
layout: "functions"
|
2018-12-20 05:35:11 +01:00
|
|
|
page_title: "replace - Functions - Configuration Language"
|
2018-05-07 03:32:16 +02:00
|
|
|
sidebar_current: "docs-funcs-string-replace"
|
|
|
|
description: |-
|
|
|
|
The replace function searches a given string for another given substring,
|
2019-03-21 20:20:29 +01:00
|
|
|
and replaces all occurrences with a given replacement string.
|
2018-05-07 03:32:16 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
# `replace` 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-05-07 03:32:16 +02:00
|
|
|
`replace` searches a given string for another given substring, and replaces
|
2019-03-21 20:20:29 +01:00
|
|
|
each occurrence with a given replacement string.
|
2018-05-07 03:32:16 +02:00
|
|
|
|
|
|
|
```hcl
|
|
|
|
replace(string, substring, replacement)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
```
|
|
|
|
> replace("1 + 2 + 3", "+", "-")
|
|
|
|
1 - 2 - 3
|
|
|
|
```
|