summaryrefslogtreecommitdiffstats
path: root/roles/openshift_master/templates/htpasswd.j2
blob: ba2c02e2020b9e67596f2d0cf19d9c23d3a01112 (plain)
1
2
3
4
5
{% if 'htpasswd_users' in openshift.master %}
{%   for user,pass in openshift.master.htpasswd_users.iteritems() %}
{{     user ~ ':' ~ pass }}
{%   endfor %}
{% endif %}