Skip to content

Instantly share code, notes, and snippets.

@worldofprasanna
Last active May 3, 2020 11:39
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 worldofprasanna/93ec441ae8339933c3da14292949848b to your computer and use it in GitHub Desktop.
Save worldofprasanna/93ec441ae8339933c3da14292949848b to your computer and use it in GitHub Desktop.
Terraform script to serve your static assets
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