Mercurial > repos > other > Puppet
view modules/my_fw/manifests/pre.pp @ 334:ee4760967d2f
Separate LetsEncrypt certs
Each site now has its own cert (fixed after discovering
hiveworldterra.ibboard.co.uk wasn't on the main HWT cert)
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sun, 15 Mar 2020 20:02:35 +0000 |
parents | e36b7f4f85f2 |
children | 11d940c9014e |
line wrap: on
line source
class my_fw::pre { Firewall { require => undef, } $icmp_proto = $my_fw::ip_version == "IPv6" ? { true => 'ipv6-icmp', default => 'icmp' } $localhost = $my_fw::ip_version == "IPv6" ? { true => '::1/128', default => '127.0.0.0/8' } # Default firewall rules firewall { '000 accept all icmp': proto => $icmp_proto, action => 'accept', } -> firewall { '001 accept all to lo interface': proto => 'all', iniface => 'lo', action => 'accept', } -> firewall { "002 reject local traffic not on loopback interface": iniface => '! lo', proto => 'all', destination => $localhost, action => 'reject', } -> firewall { '003 accept related established rules': proto => 'all', state => ['RELATED', 'ESTABLISHED'], action => 'accept', } }