Day 67 Task: AWS S3 Bucket Creation and Management
S3 bucket: Hands-On
Create an S3 bucket using Terraform
Create an S3.tf with required bucket name.
resource "aws_s3_bucket" "my_bucket" {
bucket = "day67s3bucketnew"
}
Use terraform init and plan to get the providers and view the terrafor...
nileshsahare07.hashnode.dev2 min read