- add haproxy server class - add haproxy profile to role - add hiera data for region specific haproxy - add selinux configuration - add certlist management - add default http and https frontends - add default stats listener
10 lines
189 B
Puppet
10 lines
189 B
Puppet
# profiles::haproxy::mappings
|
|
class profiles::haproxy::mappings (
|
|
Array $list = []
|
|
) {
|
|
haproxy::mapfile { 'domains-to-backends':
|
|
ensure => 'present',
|
|
mappings => $list,
|
|
}
|
|
}
|