Skip to content

Instantly share code, notes, and snippets.

View kwhitejr's full-sized avatar

Kevin White kwhitejr

  • Wayfair, Inc.
  • Portland, OR
View GitHub Profile
@nagelflorian
nagelflorian / buckets.tf
Last active February 12, 2024 07:44
Terraform config for static website hosting on AWS
# AWS S3 bucket for static hosting
resource "aws_s3_bucket" "website" {
bucket = "${var.website_bucket_name}"
acl = "public-read"
tags {
Name = "Website"
Environment = "production"
}