aboutsummaryrefslogtreecommitdiff
path: root/manifests/resources.pp
blob: fee86134c2f580c45aa67843bea872d8dc3a9476 (plain)
1
2
3
4
5
6
7
8
class php::resources {
  $configs = hiera('php::config', {})
  $pools   = hiera('php::pool',   {})

  # Apply instances
  create_resources('php::config',    $configs)
  create_resources('php::fpm::pool', $pools)
}