Skip to content

Instantly share code, notes, and snippets.

@iann0036
Last active April 20, 2021 23:16
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 iann0036/cb9f9463cf791eb27beb132623763f32 to your computer and use it in GitHub Desktop.
Save iann0036/cb9f9463cf791eb27beb132623763f32 to your computer and use it in GitHub Desktop.
Send Lambda/CFN app to S3 buckets
for region in `aws ec2 describe-regions --output text | cut -f4`
do
aws s3 cp lambda/app.zip s3://ianmckay-$region/APPLICATION/app.zip --acl public-read
aws s3 cp template.yml s3://ianmckay-$region/APPLICATION/template.yml --acl public-read
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment