Created
March 7, 2019 21:48
-
-
Save 100daysofdevops/5191596c2c1d831cc230a8d34a13e146 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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