Created
April 12, 2017 03:59
-
-
Save jschr/cd9867bde81676848a6cbc102752ee33 to your computer and use it in GitHub Desktop.
terraform sample
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
resource "aws_s3_bucket" "b" { | |
bucket = "my_tf_test_bucket" | |
acl = "private" | |
tags { | |
Name = "My bucket" | |
Environment = "Dev" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment