Skip to content

Instantly share code, notes, and snippets.

View tkgregory's full-sized avatar

Tom Gregory tkgregory

View GitHub Profile
@tkgregory
tkgregory / ecs.yml
Last active September 19, 2023 17:01
An example CloudFormation template for deployment of a container to ECS, including integration with an Application Load Balancer.
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
Subnet1ID:
Type: String
Subnet2ID:
Type: String
VPCID:
Type: String
Resources:
Cluster:
@tkgregory
tkgregory / ecs.yml
Last active April 8, 2024 02:40
An example CloudFormation template for deployment of a container to ECS.
AWSTemplateFormatVersion: "2010-09-09"
Parameters:
SubnetID:
Type: String
Resources:
Cluster:
Type: AWS::ECS::Cluster
Properties:
ClusterName: deployment-example-cluster
LogGroup: