-
-
Save itsmenaga/b09be329429c1158b1b48f257380d12f to your computer and use it in GitHub Desktop.
This file contains 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
#!/bin/bash | |
touch index.html | |
touch error.html | |
aws s3api create-bucket --bucket $1 --region us-east-1 | |
aws s3 website s3://$1/ --index-document index.html --error-document error.html | |
aws s3 cp index.html s3://$1 --acl public-read | |
aws s3 cp error.html s3://$1 --acl public-read |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment