AWS CloudFormation scenarios to create S3 bucket with 'BucketAlreadyExists' scenarios despite unique name
I'm wondering if anyone has experience with I've been struggling with this for a few days now and could really use some help... I'm trying to deploy a CloudFormation stack that includes an S3 bucket resource. However, I'm working with the behavior `BucketAlreadyExists` during the creation process. I've checked the AWS documentation and ensured that bucket names are globally unique. My CloudFormation template is as follows: ```yaml Resources: MyS3Bucket: Type: 'AWS::S3::Bucket' Properties: BucketName: my-unique-bucket-name-123456 VersioningConfiguration: Status: Enabled ``` I've tried several different bucket names, all of which I believe should be unique. Additionally, I confirmed that no other buckets exist with these names in my AWS account or in other accounts by using the AWS CLI: ```bash aws s3api list-buckets --query "Buckets[].Name" ``` Despite this, I keep getting the same behavior message. I've also tried deleting any existing stacks that may have attempted to create buckets with similar names, but that didn't help. Is there something I'm missing, or could it be an scenario with the CloudFormation service itself? Any insights on how I can troubleshoot this further would be greatly appreciated! The project is a CLI tool built with Yaml. This is happening in both development and production on Ubuntu 22.04. I'm open to any suggestions.