Skip to content

Commit

Permalink
Add S3 buckets to master output with note to delete the buckets befor…
Browse files Browse the repository at this point in the history
…e deleting the stack
  • Loading branch information
cplee committed Mar 28, 2016
1 parent 1f42375 commit 85724a5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"chalk": "^1.1.1"
},
"devDependencies": {
"cfn-api-gateway-deployment": "^0.4.0",
"cfn-api-gateway-deployment": "cplee/cfn-api-gateway-deployment",
"cfn-api-gateway-integration": "^0.2.0",
"cfn-api-gateway-integration-response": "^0.2.2",
"cfn-api-gateway-method": "^0.3.0",
Expand Down
12 changes: 12 additions & 0 deletions pipeline/cfn/master.json
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,14 @@
}
},
"Outputs":{
"TestSiteBucket" : {
"Value" : { "Fn::GetAtt" : [ "TestS3Stack", "Outputs.SiteBucket" ] } ,
"Description" : "Test Site Bucket - Empty before deleting stack"
},
"ProdSiteBucket" : {
"Value" : { "Fn::GetAtt" : [ "ProdS3Stack", "Outputs.SiteBucket" ] } ,
"Description" : "Prod Site Bucket - Empty before deleting stack"
},
"TestSiteUrl" : {
"Value" : { "Fn::GetAtt" : [ "TestS3Stack", "Outputs.SiteUrl" ] } ,
"Description" : "Test Site Url"
Expand All @@ -289,6 +297,10 @@
"Value" : { "Fn::GetAtt" : [ "ProdS3Stack", "Outputs.SiteUrl" ] } ,
"Description" : "Production Site Url"
},
"PipelineBucket" : {
"Value" : { "Fn::GetAtt" : [ "PipelineStack", "Outputs.ArtifactBucket" ] } ,
"Description" : "Pipeline Artifact Bucket - Empty before deleting stack"
},
"PipelineUrl": {
"Value": {
"Fn::Join": [
Expand Down

0 comments on commit 85724a5

Please sign in to comment.