|
|
@ -33,6 +33,12 @@ options:
|
|
|
|
- C(?format=json) will be appended per default.
|
|
|
|
- C(?format=json) will be appended per default.
|
|
|
|
required: false
|
|
|
|
required: false
|
|
|
|
default: 'https://api.ipify.org'
|
|
|
|
default: 'https://api.ipify.org'
|
|
|
|
|
|
|
|
timeout:
|
|
|
|
|
|
|
|
description:
|
|
|
|
|
|
|
|
- HTTP connection timeout in seconds.
|
|
|
|
|
|
|
|
required: false
|
|
|
|
|
|
|
|
default: 10
|
|
|
|
|
|
|
|
version_added: "2.3"
|
|
|
|
notes:
|
|
|
|
notes:
|
|
|
|
- "Visit https://www.ipify.org to get more information."
|
|
|
|
- "Visit https://www.ipify.org to get more information."
|
|
|
|
'''
|
|
|
|
'''
|
|
|
@ -42,9 +48,11 @@ EXAMPLES = '''
|
|
|
|
- name: get my public IP
|
|
|
|
- name: get my public IP
|
|
|
|
ipify_facts:
|
|
|
|
ipify_facts:
|
|
|
|
|
|
|
|
|
|
|
|
# Gather IP facts from your own ipify service endpoint
|
|
|
|
# Gather IP facts from your own ipify service endpoint with a custom timeout
|
|
|
|
- name: get my public IP
|
|
|
|
- name: get my public IP
|
|
|
|
ipify_facts: api_url=http://api.example.com/ipify
|
|
|
|
ipify_facts:
|
|
|
|
|
|
|
|
api_url: http://api.example.com/ipify
|
|
|
|
|
|
|
|
timeout: 20
|
|
|
|
'''
|
|
|
|
'''
|
|
|
|
|
|
|
|
|
|
|
|
RETURN = '''
|
|
|
|
RETURN = '''
|
|
|
@ -65,27 +73,35 @@ except ImportError:
|
|
|
|
# Let snippet from module_utils/basic.py return a proper error in this case
|
|
|
|
# Let snippet from module_utils/basic.py return a proper error in this case
|
|
|
|
pass
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
|
|
|
|
from ansible.module_utils.urls import fetch_url
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class IpifyFacts(object):
|
|
|
|
class IpifyFacts(object):
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
def __init__(self):
|
|
|
|
self.api_url = module.params.get('api_url')
|
|
|
|
self.api_url = module.params.get('api_url')
|
|
|
|
|
|
|
|
self.timeout = module.params.get('timeout')
|
|
|
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
def run(self):
|
|
|
|
result = {
|
|
|
|
result = {
|
|
|
|
'ipify_public_ip': None
|
|
|
|
'ipify_public_ip': None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
(response, info) = fetch_url(module, self.api_url + "?format=json" , force=True)
|
|
|
|
(response, info) = fetch_url(module=module, url=self.api_url + "?format=json" , force=True, timeout=self.timeout)
|
|
|
|
if response:
|
|
|
|
|
|
|
|
data = json.loads(response.read())
|
|
|
|
if not response:
|
|
|
|
result['ipify_public_ip'] = data.get('ip')
|
|
|
|
module.fail_json(msg="No valid or no response from url %s within %s seconds (timeout)" % (self.api_url, self.timeout))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
data = json.loads(response.read())
|
|
|
|
|
|
|
|
result['ipify_public_ip'] = data.get('ip')
|
|
|
|
return result
|
|
|
|
return result
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
def main():
|
|
|
|
global module
|
|
|
|
global module
|
|
|
|
module = AnsibleModule(
|
|
|
|
module = AnsibleModule(
|
|
|
|
argument_spec = dict(
|
|
|
|
argument_spec = dict(
|
|
|
|
api_url = dict(default='https://api.ipify.org'),
|
|
|
|
api_url=dict(default='https://api.ipify.org'),
|
|
|
|
|
|
|
|
timeout=dict(type='int', default=10),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
supports_check_mode=True,
|
|
|
|
)
|
|
|
|
)
|
|
|
@ -94,7 +110,5 @@ def main():
|
|
|
|
ipify_facts_result = dict(changed=False, ansible_facts=ipify_facts)
|
|
|
|
ipify_facts_result = dict(changed=False, ansible_facts=ipify_facts)
|
|
|
|
module.exit_json(**ipify_facts_result)
|
|
|
|
module.exit_json(**ipify_facts_result)
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
|
|
|
|
from ansible.module_utils.urls import *
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|
|
|
|
main()
|
|
|
|