Created
May 10, 2021 20:32
-
-
Save richardsonlima/e25c45d535332c553be5d60e29756a34 to your computer and use it in GitHub Desktop.
Terraform - s3 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" "b" { | |
bucket = "private-tf-test-bucket-013" | |
acl = "private" | |
tags = { | |
Name = "private bucket" | |
Environment = "Dev" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment