ECS with Terraform
问题 Is there a good / definitive reference or course for managing a ECS service using Terraform. I have referred this which creates the ECS Service, but I can't get to a state where my task runs on that cluster. Here is what I have for now: # create the VPC resource "aws_vpc" "vpc" { cidr_block = var.cidr_vpc instance_tenancy = var.instanceTenancy enable_dns_support = var.dnsSupport enable_dns_hostnames = var.dnsHostNames tags = { Name = "tdemo" } } # Create the Internet Gateway resource "aws