From a6a3afd3e628b9de2683fbe825104cd24009b275 Mon Sep 17 00:00:00 2001 From: Digbijayinee Clara <52991229+DigbijayineeClara07@users.noreply.github.com> Date: Thu, 25 Sep 2025 06:48:12 +0530 Subject: [PATCH] Revert "added-cf-template" --- QA-SG-CloudFormation/SG-S3-Bucket-CF.yml | 28 ------------------------ 1 file changed, 28 deletions(-) delete mode 100644 QA-SG-CloudFormation/SG-S3-Bucket-CF.yml diff --git a/QA-SG-CloudFormation/SG-S3-Bucket-CF.yml b/QA-SG-CloudFormation/SG-S3-Bucket-CF.yml deleted file mode 100644 index 754e7ad..0000000 --- a/QA-SG-CloudFormation/SG-S3-Bucket-CF.yml +++ /dev/null @@ -1,28 +0,0 @@ -AWSTemplateFormatVersion: "2010-09-09" -Description: This template deploys an AWS S3 bucket. - -Parameters: - BucketName: - Type: String - Description: "The name of the S3 bucket to create" - MinLength: 3 - MaxLength: 63 - AllowedPattern: "^[a-z0-9.-]+$" - ConstraintDescription: "Bucket name must contain only lowercase letters, numbers, dots, and hyphens." - -Resources: - SGS3Bucket: - Type: AWS::S3::Bucket - Properties: - BucketName: !Ref BucketName - VersioningConfiguration: - Status: Enabled - -Outputs: - BucketName: - Description: "Name of the created S3 bucket" - Value: !Ref SGS3Bucket - - BucketArn: - Description: "ARN of the created S3 bucket" - Value: !GetAtt SGS3Bucket.Arn