Use native YAML (#3435)
This commit is contained in:
parent
f68a45ca9a
commit
9a1b5b5e18
1 changed files with 17 additions and 8 deletions
|
@ -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='''
|
||||
|
|
Loading…
Reference in a new issue