Use native YAML (#3435)

This commit is contained in:
Fabio Alessandro Locati 2016-11-13 09:13:08 +00:00 committed by Matt Clay
parent f68a45ca9a
commit 9a1b5b5e18

View file

@ -52,25 +52,34 @@ author: "Christopher Troup (@minichate)"
EXAMPLES = '''
# create a public zone
- route53_zone: zone=example.com state=present comment="this is an example"
- route53_zone:
zone: example.com
state: present
comment: this is an example
# delete a public zone
- route53_zone: zone=example.com state=absent
- route53_zone:
zone: example.com
state: absent
- name: private zone for devel
route53_zone: zone=devel.example.com state=present vpc_id={{myvpc_id}} comment='developer domain'
route53_zone:
zone: devel.example.com
state: present
vpc_id: '{{ myvpc_id }}'
comment: developer domain
# more complex example
- name: register output after creating zone in parameterized region
route53_zone:
vpc_id: "{{ vpc.vpc_id }}"
vpc_region: "{{ ec2_region }}"
zone: "{{ vpc_dns_zone }}"
vpc_id: '{{ vpc.vpc_id }}'
vpc_region: '{{ ec2_region }}'
zone: '{{ vpc_dns_zone }}'
state: present
register: zone_out
- debug: var=zone_out
- debug:
var: zone_out
'''
RETURN='''