Technical documentation, Terraform IaC blueprints, and API reference guides maintained by web principal architects.
module "ecs_cluster" {
source = "git::https://github.com/codyxweb/terraform-aws-ecs-multi-az"
cluster_name = "codyxweb-prod-ecs"
environment = "production"
vpc_id = module.vpc.vpc_id
subnets = module.vpc.private_subnets
enable_container_insights = true
auto_scaling_min_capacity = 4
auto_scaling_max_capacity = 64
}