Skip to content

Instantly share code, notes, and snippets.

@100daysofdevops
Created March 7, 2019 21:48
Show Gist options
  • Select an option

  • Save 100daysofdevops/5191596c2c1d831cc230a8d34a13e146 to your computer and use it in GitHub Desktop.

Select an option

Save 100daysofdevops/5191596c2c1d831cc230a8d34a13e146 to your computer and use it in GitHub Desktop.
provider "aws" {
region = "us-west-2"
}
resource "aws_s3_bucket" "example" {
bucket = "my-test-s3-terraform-bucket"
acl = "private"
versioning {
enabled = true
}
tags {
Name = "my-test-s3-terraform-bucket"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment