UNPKG

@incdevco/framework

Version:
28 lines 550 B
{ "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"]} } } }