Created
June 25, 2020 16:59
-
-
Save vvgsrk/cb67edb5d27ad7850a7690f0e8f3fc87 to your computer and use it in GitHub Desktop.
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: 'Cloudformation Stack to create a outbound bucket for Fleet Assigner Data' | |
Resources: | |
DataBucketDev: | |
Type: 'AWS::S3::Bucket' | |
Properties: | |
AccessControl: Private | |
PublicAccessBlockConfiguration: | |
BlockPublicAcls : true | |
BlockPublicPolicy : true | |
IgnorePublicAcls : true | |
RestrictPublicBuckets : true | |
BucketEncryption: | |
ServerSideEncryptionConfiguration: | |
- ServerSideEncryptionByDefault: | |
SSEAlgorithm: AES256 | |
BucketName: 'dev-outbound-fleetassigner' | |
Outputs: | |
BucketDev: | |
Description: The identification of the bucket | |
Value: !GetAtt | |
- DataBucketDev | |
- Arn |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment