blob: b17383b624da98dcfdbfae5f69403537efa6fb03 (
plain)
1
2
3
4
5
6
7
8
|
class php::resources {
$configs = hiera('php::config', {})
$pools = hiera('php::fpm::pool', {})
# Apply instances
create_resources('php::config', $configs)
create_resources('php::fpm::pool', $pools)
}
|