Skip to content

Instantly share code, notes, and snippets.

@loujaybee
Last active September 16, 2019 16:31
terraform {
version = "0.11.13"
}
provider "aws" {
region = "eu-central-1"
}
resource "aws_s3_bucket" "your_new_bucket" {
bucket = "my-first-website-cloud-native-website"
acl = "public-read"
website {
index_document = "index.html"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment