Skip to content

Instantly share code, notes, and snippets.

@jschr
Created April 12, 2017 03:59
Show Gist options
  • Save jschr/cd9867bde81676848a6cbc102752ee33 to your computer and use it in GitHub Desktop.
Save jschr/cd9867bde81676848a6cbc102752ee33 to your computer and use it in GitHub Desktop.
terraform sample
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