29 lines
894 B
Puppet
29 lines
894 B
Puppet
## confdroid_haproxy::firewall::iptables.pp
|
|
# Module name: confdroid_haproxy
|
|
# Author: Arne Teuke (arne_teuke@confdroid.com)
|
|
# @summary manage firewall settings through cd_firewall or puppetlabs-firewall
|
|
###############################################################################
|
|
class confdroid_haproxy::firewall::iptables (
|
|
|
|
) inherits confdroid_haproxy::params {
|
|
if ($fqdn == $hy_host_fqdn) and ($hy_manage_fw == true) {
|
|
firewall { "${hy_fw_order_no}${hy_http_port} tcp port ${hy_http_port}":
|
|
proto => 'tcp',
|
|
dport => $hy_http_port,
|
|
jump => 'accept',
|
|
}
|
|
|
|
firewall { "${hy_fw_order_no}${hy_https_port} tcp port ${hy_https_port}":
|
|
proto => 'tcp',
|
|
dport => $hy_https_port,
|
|
jump => 'accept',
|
|
}
|
|
|
|
firewall { "${hy_fw_order_no}9000 tcp port minio-api":
|
|
proto => 'tcp',
|
|
dport => '9000',
|
|
jump => 'accept',
|
|
}
|
|
}
|
|
}
|