|
|
@ -86,7 +86,7 @@ notes:
|
|
|
|
- The DNS Made Easy service requires that machines interacting with the API have the proper time and timezone set. Be sure you are within a few seconds of actual time by using NTP.
|
|
|
|
- The DNS Made Easy service requires that machines interacting with the API have the proper time and timezone set. Be sure you are within a few seconds of actual time by using NTP.
|
|
|
|
- This module returns record(s) in the "result" element when 'state' is set to 'present'. This value can be be registered and used in your playbooks.
|
|
|
|
- This module returns record(s) in the "result" element when 'state' is set to 'present'. This value can be be registered and used in your playbooks.
|
|
|
|
|
|
|
|
|
|
|
|
requirements: [ urllib, urllib2, hashlib, hmac ]
|
|
|
|
requirements: [ hashlib, hmac ]
|
|
|
|
author: "Brice Burgess (@briceburg)"
|
|
|
|
author: "Brice Burgess (@briceburg)"
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
@ -113,6 +113,8 @@ EXAMPLES = '''
|
|
|
|
# DNSMadeEasy module specific support methods.
|
|
|
|
# DNSMadeEasy module specific support methods.
|
|
|
|
#
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import urllib
|
|
|
|
|
|
|
|
|
|
|
|
IMPORT_ERROR = None
|
|
|
|
IMPORT_ERROR = None
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
import json
|
|
|
|
import json
|
|
|
|