Search

ECS Cluster

resource "aws_ecs_cluster" "cluster" { name = "wsc2024-cluster" setting { name = "containerInsights" value = "enabled" } } resource "aws_ecs_cluster_capacity_providers" "ecs" { cluster_name = aws_ecs_cluster.cluster.name capacity_providers = ["FARGATE"] default_capacity_provider_strategy { base = 1 weight = 100 capacity_provider = "FARGATE" } }
JSON
복사