Skip to content

Instantly share code, notes, and snippets.

@adamrneary
Created March 22, 2016 20:44
Show Gist options
  • Save adamrneary/679602e6a4230afa7716 to your computer and use it in GitHub Desktop.
Save adamrneary/679602e6a4230afa7716 to your computer and use it in GitHub Desktop.
# gronk
resource "aws_s3_bucket" "gronk-s3" {
bucket = "wi-gronk-${var.env}"
acl = "public-read"
website {
index_document = "index.html"
error_document = "index.html"
}
tags {
Name = "wi-gronk-${var.env}"
env = "${var.env}"
Application = "gronk"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment