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

  include site_shorewall::defaults

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

}