Last active
April 20, 2021 23:16
-
-
Save iann0036/cb9f9463cf791eb27beb132623763f32 to your computer and use it in GitHub Desktop.
Send Lambda/CFN app to S3 buckets
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
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