You can use terraform trimspace() function to remove all whitespace from a string. trimspace() removes any space characters from the start and end of the given string.
Syntax: trimspace(“string_with_space”)
Open terraform console
1 2 |
## Open terraform console terraform console |
Remove whitespace from a string in terraform
1 2 3 |
## Remove whitespace from a string trimspace(" hello world ") ## returns "hello world" |