diff --git a/.cloudformation/01-stack-storage.yaml b/.cloudformation/01-stack-storage.yaml new file mode 100644 index 0000000..cf861d3 --- /dev/null +++ b/.cloudformation/01-stack-storage.yaml @@ -0,0 +1,34 @@ +AWSTemplateFormatVersion: 2010-09-09 +Description: S3 bucket for static assets for Strapi deployment. +Resources: + ELBExampleBucket: + Type: "AWS::S3::Bucket" + Properties: + AccessControl: PublicRead + BucketName: elb-example-bucket-cf + Tags: [ + { + "Key": "git", + "Value": "web-dev" + }, + { + "Key": "owner", + "Value": "home" + }, + { + "Key": "project", + "Value": "strapi-elb" + }, + { + "Key": "test", + "Value": "true" + }, + { + "Key": "environment", + "Value": "dev" + }, + { + "Key": "deployment", + "Value": "cloudformation" + }, + ]