You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When importing resources using Terraformer, it would be nice to have those values escaped to $${ and %%{ respectively, otherwise Terraform will interpret those values as the start of string templates.
The text was updated successfully, but these errors were encountered:
Faced the same problem. The raw value in AWS is s3://aws-waf-logs-my-app/AWSLogs/123123123/WAFLogs/${region}/MyFirewall/${date}/ and the resolved value by Terraform is the exact string value.
In Terraform, string templates begin wth
${
or%{
.When importing resources using Terraformer, it would be nice to have those values escaped to
$${
and%%{
respectively, otherwise Terraform will interpret those values as the start of string templates.The text was updated successfully, but these errors were encountered: