Docs: remove redundant quotes in ec2_elb docs

This commit is contained in:
Gilad Peleg 2015-10-16 00:57:04 +03:00
parent 7b21bc7144
commit 68e1ff2f81

View file

@ -82,7 +82,7 @@ pre_tasks:
local_action:
module: ec2_elb
instance_id: "{{ ansible_ec2_instance_id }}"
state: 'absent'
state: absent
roles:
- myrole
post_tasks:
@ -91,7 +91,7 @@ post_tasks:
module: ec2_elb
instance_id: "{{ ansible_ec2_instance_id }}"
ec2_elbs: "{{ item }}"
state: 'present'
state: present
with_items: ec2_elbs
"""