devops-coop / ansible-haproxy

Installs and configure HAProxy
Apache License 2.0
96 stars 97 forks source link

Add support for userlists #19

Closed pieterlexis closed 9 years ago

pieterlexis commented 9 years ago

This commit allows adding userlists if both formats via ansible.

Example vars:

haproxy_userlists:
  - name: 'MyList'
    users: 
      - name: 'user1'
        password: 'insecure-password user1'
      - name: 'user2'
        password: 'insecure-password user2'
PierrePaul commented 9 years ago

Really cool. Thank you!