Skip to content

Latest commit

 

History

History
 
 

ecs

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

ECS Templates for AWS CloudFormation

Find the documentation here: https://templates.cloudonaut.io/en/stable/ecs/

Developer notes

ECS RegionMap

To update the region map execute the following lines in your terminal:

$ regions=$(aws ec2 describe-regions --query "Regions[].RegionName" --output text)
$ for region in $regions; do ami=$(aws --region $region ec2 describe-images --filters "Name=name,Values=amzn2-ami-ecs-hvm-2.0.20190204-x86_64-ebs" --query "Images[0].ImageId" --output "text"); printf "'$region':\n  ECSAMI: '$ami'\n"; done