Created
July 21, 2014 08:11
-
-
Save itayw/ce9b4252b3b51ccf9956 to your computer and use it in GitHub Desktop.
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
var qitem = { | |
"name": "Delete an Application [" + name + "]", | |
"status": "pending", | |
"steps": [ | |
{ | |
"name": "Step 1: Destroy VM [" + name + "]", | |
"recipe": "vm/gce_destroyinstance", | |
"allowFail": true, | |
"args": { | |
"datacenter": datacenter, | |
"name": name | |
} | |
}, | |
{ | |
"name": "Step 2: Destroy Chef Node and Client [" + name + "]", | |
"recipe": "chef/destroy", | |
"args": { | |
"name": name | |
} | |
} | |
] | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment