We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent db068fd commit 2797419Copy full SHA for 2797419
example.yaml
@@ -1,4 +1,2 @@
1
-pamldap:
2
- base_dn: 'dc=sportingbet,dc=com'
3
- uris: [ 'ldap://10.7.96.13', 'ldap://10.7.96.14' ]
4
-
+pamldap::base_dn: 'dc=sportingbet,dc=com'
+pamldap::uris: [ 'ldap://10.7.96.13', 'ldap://10.7.96.14' ]
manifests/init.pp
@@ -1,6 +1,6 @@
class pamldap (
- $base_dn,
- $uris,
+ $base_dn = hiera('pamldap::base_dn'),
+ $uris = hiera('pamldap::uris'),
) {
5
class { 'pamldap::config':
6
base_dn => $base_dn,
0 commit comments