Last active
May 4, 2023 16:32
-
-
Save hendrixroa/1e773a3de00a10c6f612743289c30070 to your computer and use it in GitHub Desktop.
AWS ECS cluster using fargate only
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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