summaryrefslogtreecommitdiff
path: root/puppet/modules/site_shorewall/manifests/service/https.pp
blob: 4a8b119cd333743ee14c5a0630f41b5a0377080d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class site_shorewall::service::https {

  include site_shorewall::defaults

  shorewall::rule {
      'net2fw-https':
        source      => 'net',
        destination => '$FW',
        action      => 'HTTPS(ACCEPT)',
        order       => 200;
  }
}