Skip to content

Instantly share code, notes, and snippets.

@kevinhooke
Created October 6, 2021 18:06
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 kevinhooke/30ddf444e5fdbd24e283ab71e690f241 to your computer and use it in GitHub Desktop.
Save kevinhooke/30ddf444e5fdbd24e283ab71e690f241 to your computer and use it in GitHub Desktop.
AWS CloudFormation template for ECS Cluster
{
"Description" : "Example ECS Cluster",
"Resources" : {
"ECSClusterExample1" : {
"Type" : "AWS::ECS::Cluster",
"Properties" : {
"ClusterName" : "ecs-cluster-example1"
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment