Amazon Web Services - Tag a S3 bucket with its own name within a CloudFormation
问题 I am currently fighting with AWS CloudFormation because I want to tag a bucket with its own name (in order to separate its costs in my Cost Allocation report). When I do "MyBucket" : { "Type" : "AWS::S3::Bucket", "Properties" : { "AccessControl" : "Private", "Tags" : [ { "Key" : "Name", "Value" : { "Ref" : "MyBucket" } } ] } }, the CloudFormation wizard throws the following error: Error Template validation error: Circular dependency between resources: [MyBucket] The real problem is that I