@incdevco/framework
Version:
node.js lambda framework
28 lines • 550 B
JSON
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "main logging stack",
"Parameters": {
"AssetsBucket": {
"Type": "String"
}
},
"Conditions": {},
"Mappings": {},
"Resources": {
"Bucket": {
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Retain",
"Properties": {
"AccessControl": "LogDeliveryWrite"
}
}
},
"Outputs": {
"BucketName": {
"Value": {"Ref": "Bucket"}
},
"BucketDomainName": {
"Value": {"Fn::GetAtt": ["Bucket", "DomainName"]}
}
}
}