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