summaryrefslogtreecommitdiff
path: root/chef/spec/data/cookbooks/openldap/attributes/default.rb
blob: 204ae9ed77cd732f7d478291481c3c8515f308b8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
chef_env ||= nil
case chef_env
when "prod"
  ldap_server "ops1prod"
  ldap_basedn "dc=hjksolutions,dc=com"
  ldap_replication_password "yes"
when "corp"
  ldap_server "ops1prod"
  ldap_basedn "dc=hjksolutions,dc=com"
  ldap_replication_password "yougotit"
else
  ldap_server "ops1prod"
  ldap_basedn "dc=hjksolutions,dc=com"
  ldap_replication_password "forsure" 
end