Skip to content

Instantly share code, notes, and snippets.

@jimsynz
Created November 3, 2010 22:50
Show Gist options
  • Save jimsynz/661857 to your computer and use it in GitHub Desktop.
Save jimsynz/661857 to your computer and use it in GitHub Desktop.
snipped of a chef recipe.
include_recipe 'iptables'
iptables_rule 'ssh_in'
iptables_rule 'http_in'
iptables_rule 'https_in'
iptables_rule 'mongo_in' do
only_if { node[:mongo][:replica_set][:enabled] }
variables :rs_members => search(:node, "role:mongo_#{node[:mongo][:replica_set][:name]}")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment