Terraform Working Main.tf file
this is the file main.tf
# main.tf
provider "aws" {
region = "ap-southeast-1" # Replace with your preferred region
}
# Create the S3 bucket folder (prefix)
resource "aws_s3_object" "folder" {
bucket = "test-teraform-001" # Replace with your buc...
sarthakwrites.hashnode.dev2 min read