»
replace
Function
Note: This page is about Terraform 0.12 and later. For Terraform 0.11 and earlier, see 0.11 Configuration Language: Interpolation Syntax.
replace
searches a given string for another given substring, and replaces
each occurrence with a given replacement string.
replace(string, substring, replacement)
» Examples
> replace("1 + 2 + 3", "+", "-")
1 - 2 - 3