Created
October 29, 2017 21:44
-
-
Save p0bailey/51786a1eaf4214e7e30c5f1ff3bbb6c5 to your computer and use it in GitHub Desktop.
s3 aws-vault demo
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" "bucket" { | |
bucket = "somethingVaultTest" | |
acl = "private" | |
tags { | |
Name = "vault-demo" | |
Environment = "Demo" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment