So you may have noticed last time that I said I’m trying to create complex JSON objects from within Terraform. In this case, I really want to be able to create an AWSECS container definition, which looks a bit like this (copied from the AWS docs, here) { "name": "wordpress", "links": [ "mysql" ], "image": "wordpress", "essential": true, "portMappings": [ { "containerPort": 80, "hostPort": 80 } ], "memory": 500, "cpu": 10 } The important part for me here is making a module to create these JS...