summaryrefslogtreecommitdiff
path: root/puppet/modules/soledad
diff options
context:
space:
mode:
authorMicah Anderson <micah@leap.se>2013-11-28 12:00:50 -0500
committerMicah Anderson <micah@leap.se>2013-11-28 12:16:24 -0500
commit76c3048a15719bc1dd15287fd3406e94d40684ab (patch)
tree99f5896800d0b1fe0be86c9ff5bfe8ca317c5da8 /puppet/modules/soledad
parent408621e4b57b9df1d67fa32eba8d15b83b8d1fd4 (diff)
fix soledad couchdb hiera variables
Change-Id: I0882fc993b407eddc40c03838050d42c0443bd3d
Diffstat (limited to 'puppet/modules/soledad')
-rw-r--r--puppet/modules/soledad/manifests/server.pp7
1 files changed, 3 insertions, 4 deletions
diff --git a/puppet/modules/soledad/manifests/server.pp b/puppet/modules/soledad/manifests/server.pp
index 339030fc..d4991fe6 100644
--- a/puppet/modules/soledad/manifests/server.pp
+++ b/puppet/modules/soledad/manifests/server.pp
@@ -3,10 +3,9 @@ class soledad::server {
include soledad
include site_apt::preferences::twisted
- $couchdb = hiera('couch')
- $couchdb_users = $couchdb['users']
- $couchdb_user = $couchdb_users['soledad']['username']
- $couchdb_password = $couchdb_users['soledad']['password']
+ $soledad = hiera('soledad')
+ $couchdb_user = $soledad['couchdb_soledad_user']['username']
+ $couchdb_password = $soledad['couchdb_soledad_password']['password']
$couchdb_host = 'localhost'
$couchdb_port = '5984'