1
0
mirror of https://github.com/krislamo/vagrant-jenkins synced 2024-09-19 15:00:36 +00:00

dynamically manage firewall ports from hiera values

This commit is contained in:
Mark Heiges 2016-12-15 12:31:21 -05:00
parent 630f8b3336
commit 4e51275d6b

View File

@ -11,35 +11,18 @@ class profiles::ebrc_jenkins {
Class['::profiles::local_home'] ->
Class['::ebrc_jenkins']
firewalld::custom_service{ 'Allow jenkins in public zone':
short => 'jenkins',
port => [
{
'port' => 9191,
'protocol' => 'tcp'
$jenkins_instances = hiera('ebrc_jenkins::instances')
$jenkins_instances.each |$instance, $conf| {
$port = $conf['http_port']
firewalld_rich_rule { "Jenkins instance ${instance}":
ensure => present,
zone => 'public',
port => {
'port' => $port,
'protocol' => 'tcp',
},
{
'port' => 9181,
'protocol' => 'tcp'
},
{
'port' => 9130,
'protocol' => 'tcp'
},
{
'port' => 9120,
'protocol' => 'tcp'
},
],
before => Firewalld_service['Allow jenkins in public zone'],
action => 'accept',
}
firewalld_service {'Allow jenkins in public zone':
ensure => 'present',
zone => 'public',
service => 'jenkins',
}
}
}