├── .gitignore ├── LICENSE ├── README.md ├── load-balancer.tf ├── main.tf ├── outputs.tf ├── test.sh ├── test ├── .terraform-version ├── ecs.tf ├── init.sh ├── main.tf ├── outputs.tf ├── roles-ecs-task-execution.tf ├── service_ecs.tf ├── service_fargate.tf ├── task-definition │ └── blog.json └── variables.tf └── variables.tf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/README.md -------------------------------------------------------------------------------- /load-balancer.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/load-balancer.tf -------------------------------------------------------------------------------- /main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/main.tf -------------------------------------------------------------------------------- /outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/outputs.tf -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test.sh -------------------------------------------------------------------------------- /test/.terraform-version: -------------------------------------------------------------------------------- 1 | 0.11.2 2 | -------------------------------------------------------------------------------- /test/ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/ecs.tf -------------------------------------------------------------------------------- /test/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/init.sh -------------------------------------------------------------------------------- /test/main.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/main.tf -------------------------------------------------------------------------------- /test/outputs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/outputs.tf -------------------------------------------------------------------------------- /test/roles-ecs-task-execution.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/roles-ecs-task-execution.tf -------------------------------------------------------------------------------- /test/service_ecs.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/service_ecs.tf -------------------------------------------------------------------------------- /test/service_fargate.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/service_fargate.tf -------------------------------------------------------------------------------- /test/task-definition/blog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/task-definition/blog.json -------------------------------------------------------------------------------- /test/variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/test/variables.tf -------------------------------------------------------------------------------- /variables.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/npalm/terraform-aws-ecs-service/HEAD/variables.tf --------------------------------------------------------------------------------