adding cloudformation template for S3

This commit is contained in:
2020-04-27 20:09:21 +01:00
parent 0401ee6d01
commit 0195c59246

View File

@@ -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"
},
]