Last active
May 3, 2020 11:39
-
-
Save worldofprasanna/93ec441ae8339933c3da14292949848b to your computer and use it in GitHub Desktop.
Terraform script to serve your static assets
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
module "staticwebsite" { | |
source = "worldofprasanna/staticwebsite/aws" | |
version = "1.0.0" | |
domain = "yourdomain.com" | |
} | |
# To create the resource, | |
terraform apply | |
# To upload the static assests, | |
aws s3 sync build/ s3://yourdomain.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment