summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates/htpasswd.j2
diff options
context:
space:
mode:
Diffstat (limited to 'roles/openshift_master/templates/htpasswd.j2')
-rw-r--r--roles/openshift_master/templates/htpasswd.j25
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/openshift_master/templates/htpasswd.j2 b/roles/openshift_master/templates/htpasswd.j2
new file mode 100644
index 000000000..ba2c02e20
--- /dev/null
+++ b/roles/openshift_master/templates/htpasswd.j2
@@ -0,0 +1,5 @@
+{% if 'htpasswd_users' in openshift.master %}
+{% for user,pass in openshift.master.htpasswd_users.iteritems() %}
+{{ user ~ ':' ~ pass }}
+{% endfor %}
+{% endif %}