This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| AWSTemplateFormatVersion: 2010-09-09 | |
| Description: Create an S3 bucket and IAM user with access to that bucket. | |
| Resources: | |
| S3Bucket: | |
| Type: AWS::S3::Bucket | |
| Properties: | |
| BucketName: !Sub ${AWS::StackName}-${AWS::AccountId} | |
| BucketEncryption: | |
| ServerSideEncryptionConfiguration: |
OlderNewer