Difference between revisions of "Terraform replace function"
Jump to navigation
Jump to search
Line 13: | Line 13: | ||
locals { | locals { | ||
− | name = "example-${replace([[basename]](path.cwd), "_", "-")}" | + | name = "example-${replace([[basename]]([[path.cwd]]), "_", "-")}" |
region = "eu-west-1" | region = "eu-west-1" | ||
tags = { | tags = { |
Latest revision as of 12:48, 7 June 2022
https://www.terraform.io/language/functions/replace
replace(string, substring, replacement)
Examples[edit]
> replace("1 + 2 + 3", "+", "-") 1 - 2 - 3 > replace("hello world", "/w.*d/", "everybody") hello everybody
locals { name = "example-${replace(basename(path.cwd), "_", "-")}" region = "eu-west-1" tags = { Owner = "user" Environment = "dev" } }
See also[edit]
Advertising: