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