mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-07 08:54:01 -07:00
Cleanup route53_zone examples (#34000)
This commit is contained in:
parent
b34d150bec
commit
ba32827f3b
1 changed files with 6 additions and 20 deletions
|
@ -34,7 +34,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- whether or not the zone should exist or not
|
- whether or not the zone should exist or not
|
||||||
required: false
|
required: false
|
||||||
default: true
|
default: present
|
||||||
choices: [ "present", "absent" ]
|
choices: [ "present", "absent" ]
|
||||||
vpc_id:
|
vpc_id:
|
||||||
description:
|
description:
|
||||||
|
@ -65,36 +65,22 @@ author: "Christopher Troup (@minichate)"
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# create a public zone
|
- name: create a public zone
|
||||||
- route53_zone:
|
route53_zone:
|
||||||
zone: example.com
|
zone: example.com
|
||||||
state: present
|
|
||||||
comment: this is an example
|
comment: this is an example
|
||||||
|
|
||||||
# delete a public zone
|
- name: delete a public zone
|
||||||
- route53_zone:
|
route53_zone:
|
||||||
zone: example.com
|
zone: example.com
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- name: private zone for devel
|
- name: create a private zone
|
||||||
route53_zone:
|
route53_zone:
|
||||||
zone: devel.example.com
|
zone: devel.example.com
|
||||||
state: present
|
|
||||||
vpc_id: '{{ myvpc_id }}'
|
vpc_id: '{{ myvpc_id }}'
|
||||||
vpc_region: us-west-2
|
vpc_region: us-west-2
|
||||||
comment: developer domain
|
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 }}'
|
|
||||||
state: present
|
|
||||||
register: zone_out
|
|
||||||
|
|
||||||
- debug:
|
|
||||||
var: zone_out
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
RETURN = '''
|
RETURN = '''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue