This is a simple Terraform module to S3 bucket for a static site
This configuration will provision a world readable S3 bucket in your AWS account.
AWS account Terraform
Call this module from your Terraform root config. Create a new module resource referencing this github project as source.
module "website_s3_bucket" { source = "[email protected]:nvaughn/website_s3_bucket
bucket_name = "cbt-demo-04-11-2022"
tags = { Terraform = "true" Environment = "dev" } }