Update the firewall cookbook to the latest version

This gives us comments from the named resources
This commit is contained in:
Greg Karékinian
2023-06-29 15:08:44 +02:00
parent 916ae8094c
commit 68ce3c4834
72 changed files with 4774 additions and 448 deletions

View File

@@ -5,9 +5,9 @@ default['firewall']['iptables']['defaults'][:policy] = {
}
default['firewall']['iptables']['defaults'][:ruleset] = {
'*filter' => 1,
":INPUT #{node['firewall']['iptables']['defaults'][:policy][:input]}" => 2,
":FORWARD #{node['firewall']['iptables']['defaults'][:policy][:forward]}" => 3,
":OUTPUT #{node['firewall']['iptables']['defaults'][:policy][:output]}" => 4,
":INPUT #{node['firewall']['iptables']['defaults']['policy']['input']}" => 2,
":FORWARD #{node['firewall']['iptables']['defaults']['policy']['forward']}" => 3,
":OUTPUT #{node['firewall']['iptables']['defaults']['policy']['output']}" => 4,
'COMMIT_FILTER' => 100,
}