Puppet Class: confdroid_puppet::firewall::iptables

Inherits:
confdroid_puppet::params
Defined in:
manifests/firewall/iptables.pp

Summary

Class manages firewall settings for the confdroid_puppet module.

Overview

confdroid_puppet::firewall::iptables.pp Module name: confdroid_puppet Author: Arne Teuke (arne_teuke@confdroid)



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# File 'manifests/firewall/iptables.pp', line 6

class confdroid_puppet::firewall::iptables (

) inherits confdroid_puppet::params {
  if $fqdn == $pt_pm_fqdn {
    firewall { '38140 open port 8140':
      proto => 'tcp',
      dport => '8140',
      jump  => 'accept',
    }
    firewall { '38443 open port 8443':
      proto => 'tcp',
      dport => '8443',
      jump  => 'accept',
    }
    if $pt_use_r10k_webhook == true {
      firewall { "3${pt_r10k_webhook_port} open port ${pt_r10k_webhook_port}":
        proto  => 'tcp',
        source => '10.0.1.0/24',
        dport  => $pt_r10k_webhook_port,
        jump   => 'accept',
      }
    }
  }
  if ($pt_puppetdb_fqdn == $fqdn) and ($pt_use_puppetdb == true) {
    firewall { "3${pt_https_port} open port ${pt_https_port}":
      proto => 'tcp',
      dport => $pt_https_port,
      jump  => 'accept',
    }
  }
}