Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vvgsrk/cb67edb5d27ad7850a7690f0e8f3fc87 to your computer and use it in GitHub Desktop.
Save vvgsrk/cb67edb5d27ad7850a7690f0e8f3fc87 to your computer and use it in GitHub Desktop.
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