-
-
Notifications
You must be signed in to change notification settings - Fork 248
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Use json_map_encoded
instead of deprecated to json_map
in examples
#132
Conversation
/test all |
When applying this change: - container_definitions = "[${module.container_definition.json_map_encoded},${module.datadog_container_definition.json_map_encoded}]"
+ container_definitions = jsonencode([module.container_definition.json_map_encoded, module.datadog_container_definition.json_map_encoded]) I get the error:
|
If you apply the example terraform module, do you get the same error? |
I only tried in my own setup running terraform v0.13.6 |
Can you create a new issue with a minimum viable reproducible example ? |
@DavidGamba I'm getting the same error. Were you able to find a fix? |
I just kept the line as it was before, this only affects the tests and the documentation, if you keep using it the old way you won't have any issues.
|
This pull request is now in conflict. Could you fix it @nitrocode? 🙏 |
Equivalent done via #139 |
Fix thanks to #131 (comment)