issues
search
cloudposse
/
terraform-aws-ecs-container-definition
Terraform module to generate well-formed JSON documents (container definitions) that are passed to the aws_ecs_task_definition Terraform resource
https://cloudposse.com/accelerate
Apache License 2.0
340
stars
245
forks
source link
Simplify the environment variables
#95
Closed
laur1s
closed
4 years ago
laur1s
commented
4 years ago
what
Removed sorting of environment variables
removed redundant null value comparison as with Terraform 0.12 it's possible to do that directly
why
As of Terraform provider v.28.0 it orders the environment variables inside the provider code
Therefore it's not necessary to sort variables here
references
https://github.com/terraform-providers/terraform-provider-aws/pull/11463
https://github.com/terraform-providers/terraform-provider-aws/blob/v2.68.0/CHANGELOG.md
https://www.hashicorp.com/blog/terraform-0-12-conditional-operator-improvements
what
why
references