Skip to content

Commit

Permalink
Fix with_items syntax in deployments-balancer example.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Jul 15, 2017
1 parent 9539b4e commit a830db4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployments-balancer/playbooks/deploy.yml
Expand Up @@ -11,7 +11,7 @@
socket: /var/lib/haproxy/stats
backend: habackend
delegate_to: "{{ item }}"
with_items: groups.balancer
with_items: "{{ groups.balancer }}"

tasks:
- debug: msg="Deployment would be done here."
Expand All @@ -31,4 +31,4 @@
socket: /var/lib/haproxy/stats
backend: habackend
delegate_to: "{{ item }}"
with_items: groups.balancer
with_items: "{{ groups.balancer }}"

0 comments on commit a830db4

Please sign in to comment.