aboutsummaryrefslogtreecommitdiff
path: root/manifests/resources.pp
diff options
context:
space:
mode:
Diffstat (limited to 'manifests/resources.pp')
-rw-r--r--manifests/resources.pp4
1 files changed, 3 insertions, 1 deletions
diff --git a/manifests/resources.pp b/manifests/resources.pp
index 88e173c..fee8613 100644
--- a/manifests/resources.pp
+++ b/manifests/resources.pp
@@ -1,6 +1,8 @@
class php::resources {
$configs = hiera('php::config', {})
+ $pools = hiera('php::pool', {})
# Apply instances
- create_resources('php::config', $configs)
+ create_resources('php::config', $configs)
+ create_resources('php::fpm::pool', $pools)
}