Hi,
First of all, thanks for the good work, terraform is a pretty amazing tool.
Recently, our inline template stopped working, and it was due to the fact that we weren't using the correct interpolation syntax
https://github.com/hashicorp/terraform/issues/10209Pre-0.7 we could use ${} for terraform interpolation for inline templates, and $${} was a way to 'escape' variables so you could still have ${ENV_VARIABLE} in your files (thinking of systemd interpolated environment variables for instance).
Now, we need to use $${} for all terraform interpolation for inline templates. So my question is: how do we escape ${VAR} to be left as-is in files?
Thank you,
Elise Huard