Skip to content

Instantly share code, notes, and snippets.

View ronaldroe's full-sized avatar

Ronald Roe ronaldroe

View GitHub Profile
resource "aws_s3_bucket" "static_website" {
bucket = "your-static-website-bucket"
acl = "private"
website {
index_document = "index.html"
error_document = "error.html"
}
}