Add missing files

This commit is contained in:
2021-11-29 13:12:17 -06:00
parent ecdc41a54f
commit 91ffe75bc1
16 changed files with 544 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
#
# Cookbook:: kosmos_postgresql
# Recipe:: firewall
#
unless node.chef_environment == "development"
include_recipe "kosmos-base::firewall"
firewall_rule "postgresql zerotier members" do
port 5432
protocol :tcp
command :allow
source "10.1.1.0/24"
end
end