Skip to content

Instantly share code, notes, and snippets.

View frikille's full-sized avatar

Peter Balazs frikille

  • @flowyltd
  • London
View GitHub Profile
@frikille
frikille / buckets.tf
Created May 17, 2020 15:47 — forked from nagelflorian/buckets.tf
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"
}