Skip to content

Instantly share code, notes, and snippets.

@johndesp
johndesp / thenodesearch.rb
Created June 1, 2015 16:51
Rundeck Resource Model Plugin for Chef
#!/opt/chefdk/embedded/bin ruby
require 'json'
require 'rubygems'
require 'yaml'
require 'aws-sdk'
opt_search_query = ARGV[0]
@johndesp
johndesp / cF-Ubuntu-MDB-Member.json
Created November 27, 2012 18:38
Cloud Formation Template - Ubuntu - latest MongoDB - Replica Member
{
"AWSTemplateFormatVersion": "2010-09-09",
"Description": "MonboDB replica set member",
"Parameters": {
"KeyName": {
"Description": "Name of an existing EC2 KeyPair to enable SSH access",
"Type": "String"
},
"InstanceType": {
"Type": "String",
@johndesp
johndesp / CF-Ubuntu-MDB-Primary.json
Created November 27, 2012 18:36
Cloud Formation Template - Ubuntu - latest MongoDB - Primary Node
{
"AWSTemplateFormatVersion" : "2010-09-09",
"Description" : "MongoDB replica set stack",
"Parameters" : {
"KeyName" : {
"Description" : "Name of an existing EC2 KeyPair to enable SSH access",
"Type" : "String"
},
@johndesp
johndesp / CF-Ubuntu-MDB-Primary-Template.json
Created November 27, 2012 18:31
CloudFormation-Ubuntu-10.04-MongoDB-Primary-Template
{
"AWSTemplateFormatVersion" : "2012-10-23",
"Description" : "MongoDB Primary Replica Set Stack",
"Parameters" : {
"KeyName" : {
"Description" : "Name of an existing EC2 KeyPair to enable SSH access",
"Type" : "String"
},