Skip to content

Instantly share code, notes, and snippets.

@richardsonlima
Created May 10, 2021 20:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save richardsonlima/e25c45d535332c553be5d60e29756a34 to your computer and use it in GitHub Desktop.
Save richardsonlima/e25c45d535332c553be5d60e29756a34 to your computer and use it in GitHub Desktop.
Terraform - s3 demo
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