Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
cf3f9380
Commit
cf3f9380
authored
Jul 18, 2013
by
Bruce Pennypacker
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added AAAA example
parent
e9de7066
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
9 deletions
+19
-9
library/cloud/route53
+19
-9
No files found.
library/cloud/route53
View file @
cf3f9380
...
@@ -16,11 +16,11 @@
...
@@ -16,11 +16,11 @@
DOCUMENTATION
=
'''
DOCUMENTATION
=
'''
---
---
module: r
oute53
module: r
ds
version_added: "1.4"
version_added: "1.4"
short_description: add or delete entries in Amazon
'
s Route53 DNS service
short_description: add or delete entries in Amazons Route53 DNS service
description:
description:
- Creates and deletes DNS records in Amazon
'
s Route53 service
- Creates and deletes DNS records in Amazons Route53 service
options:
options:
command:
command:
description:
description:
...
@@ -77,7 +77,7 @@ author: Bruce Pennypacker
...
@@ -77,7 +77,7 @@ author: Bruce Pennypacker
'''
'''
EXAMPLES
=
'''
EXAMPLES
=
'''
# Add new.foo.com as an A record with 3 IP
'
s
# Add new.foo.com as an A record with 3 IPs
- route53: >
- route53: >
command=create
command=create
zone=foo.com
zone=foo.com
...
@@ -94,14 +94,24 @@ EXAMPLES = '''
...
@@ -94,14 +94,24 @@ EXAMPLES = '''
type=A
type=A
register: rec
register: rec
# Delete new.foo.com
's A record using the results from the 'get'
# Delete new.foo.com
A record using the results from the get command
- route53: >
- route53: >
command=delete
command=delete
zone=foo.com
zone=foo.com
record={{ rec.set.record }}
record={{ r.set.record }}
type={{ rec.set.type }}
type={{ r.set.type }}
value={{ rec.set.value }}
value={{ r.set.value }}
.''
# Add an AAAA record. Note that because there are colons in the value
# that the entire parameter list must be quoted:
- route53: >
"command=create
zone=foo.com
record=localhost.foo.com
type=AAAA
ttl=7200
value=::1"
'''
import
sys
import
sys
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment