38 lines
782 B
YAML
38 lines
782 B
YAML
AWSTemplateFormatVersion: 2010-09-09
|
|
Description: S3 bucket for static assets for Strapi deployment.
|
|
Parameters:
|
|
TestParameter:
|
|
Type: String
|
|
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"
|
|
},
|
|
]
|