Created
December 1, 2016 22:50
-
-
Save SteveHoggNZ/bdc55a1a6c633346f44620f1a9a9d848 to your computer and use it in GitHub Desktop.
CloudFormation / DeletionPolicy example
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Resources": { | |
"myS3Bucket": { | |
"Type" : "AWS::S3::Bucket", | |
"Properties" : {}, | |
"DeletionPolicy" : "Retain" | |
}, | |
"myEBSVolume": { | |
"Type":"AWS::EC2::Volume", | |
"Properties" : { | |
"AvailabilityZone": { | |
"Fn::Select" : [ "0", { "Fn::GetAZs" : "" } ] | |
}, | |
"Size": "1", | |
"VolumeType": "standard" | |
}, | |
"DeletionPolicy" : "Snapshot" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment