Skip to content

Instantly share code, notes, and snippets.

@manavskohli
Last active February 12, 2019 00:42
Show Gist options
  • Save manavskohli/9970822bfa7a9f1b09cc29547fbf33fc to your computer and use it in GitHub Desktop.
Save manavskohli/9970822bfa7a9f1b09cc29547fbf33fc to your computer and use it in GitHub Desktop.
Creates an EC2 Instance Using Terraform
# Docs: https://www.terraform.io/docs/providers/aws/r/s3_bucket.html
resource "aws_s3_bucket" "bucket-identifier" {
bucket = "my-test-bucket"
acl = "private"
tags = {
Name = "A test bucket"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment