Skip to content

Instantly share code, notes, and snippets.

@doapp-ryanp
Created August 20, 2015 20:32
Show Gist options
  • Save doapp-ryanp/7a2f0557d6a68bc96b3f to your computer and use it in GitHub Desktop.
Save doapp-ryanp/7a2f0557d6a68bc96b3f to your computer and use it in GitHub Desktop.
cfExtensions example
{
...
"cfExtensions": {
"PolicyDocumentStatements": [
{
"Action": [
"s3:Get*",
"s3:List*",
"s3:Put*"
],
"Resource": [
{
"Fn::Join": [
"",
[
"arn:aws:s3:::",
{
"Ref": "aaProjectName"
},
"-images.",
{
"Ref": "aaHostedZoneName"
},
"/",
{
"Ref": "aaDataModelPrefix"
},
"*"
]
]
}
],
"Effect": "Allow"
}
],
"ResourceStatements": {
"imagesBucket": {
"Type": "AWS::S3::Bucket",
"DeletionPolicy": "Delete",
"Properties": {
"BucketName": {
"Fn::Join": [
"",
[
{
"Ref": "aaProjectName"
},
"-images.",
{
"Ref": "aaHostedZoneName"
}
]
]
},
"AccessControl": "PublicRead"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment