Skip to content

Instantly share code, notes, and snippets.

@sheeshmohsin
Created February 3, 2016 16:32
Show Gist options
  • Save sheeshmohsin/ab11425731d237c21f98 to your computer and use it in GitHub Desktop.
Save sheeshmohsin/ab11425731d237c21f98 to your computer and use it in GitHub Desktop.
AWS::Config::DeliveryChannel
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Resources" : {
"ConfigBucket": {
"DeletionPolicy" : "Retain",
"Type": "AWS::S3::Bucket",
"Properties": {
}
},
"DeliveryChannel": {
"Type": "AWS::Config::DeliveryChannel",
"Properties": {
"S3BucketName": {"Ref": "ConfigBucket"}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment