DNXLabs / terraform-aws-ecs

This terraform module builds an Elastic Container Service(ECS) Cluster in AWS.
https://modules.dnx.one/
Apache License 2.0
29 stars 31 forks source link

Fix cf-exports file indentation spaces #7

Closed arthurbdiniz closed 4 years ago

arthurbdiniz commented 4 years ago

I just notice that it's easy to read the attributes of the variables when they are aligned.

In the file cf-exports they are mixed.

Example:

Bad (Current)

"AlbId" = "${aws_lb.ecs.*.id[0]}",
"AlbArn" = "${aws_lb.ecs.*.arn[0]}",
"AlbDnsName" = "${aws_lb.ecs.*.dns_name[0]}"

Good

"AlbId"      = "${aws_lb.ecs.*.id[0]}",
"AlbArn"     = "${aws_lb.ecs.*.arn[0]}",
"AlbDnsName" = "${aws_lb.ecs.*.dns_name[0]}"