Skip to content

Instantly share code, notes, and snippets.

@hendrixroa
Last active May 4, 2023 16:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hendrixroa/1e773a3de00a10c6f612743289c30070 to your computer and use it in GitHub Desktop.
Save hendrixroa/1e773a3de00a10c6f612743289c30070 to your computer and use it in GitHub Desktop.
AWS ECS cluster using fargate only
resource "aws_ecs_cluster" "main" {
name = var.app_name
capacity_providers = ["FARGATE"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment