Refactor DigitalOcean modules (#35934)
- Updated documentation fragment - Updated Argument spec - Use common REST class for API calls Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
This commit is contained in:
parent
3a097063d9
commit
d74d416beb
8 changed files with 116 additions and 144 deletions
|
@ -30,6 +30,7 @@ import json
|
||||||
import os
|
import os
|
||||||
from ansible.module_utils.urls import fetch_url
|
from ansible.module_utils.urls import fetch_url
|
||||||
from ansible.module_utils._text import to_text
|
from ansible.module_utils._text import to_text
|
||||||
|
from ansible.module_utils.basic import env_fallback
|
||||||
|
|
||||||
|
|
||||||
class Response(object):
|
class Response(object):
|
||||||
|
@ -62,10 +63,16 @@ class DigitalOceanHelper:
|
||||||
self.module = module
|
self.module = module
|
||||||
self.baseurl = 'https://api.digitalocean.com/v2'
|
self.baseurl = 'https://api.digitalocean.com/v2'
|
||||||
self.oauth_token = None
|
self.oauth_token = None
|
||||||
self.get_do_oauth_token()
|
|
||||||
self.headers = {'Authorization': 'Bearer {0}'.format(self.oauth_token),
|
self.headers = {'Authorization': 'Bearer {0}'.format(self.oauth_token),
|
||||||
'Content-type': 'application/json'}
|
'Content-type': 'application/json'}
|
||||||
|
|
||||||
|
# Check if api_token is valid or not
|
||||||
|
response = self.get('account')
|
||||||
|
if response.status_code == 401:
|
||||||
|
module.fail_json(msg='Failed to login using API token, please verify validity of API token.')
|
||||||
|
|
||||||
|
self.timeout = module.params.get('timeout', 30)
|
||||||
|
|
||||||
def _url_builder(self, path):
|
def _url_builder(self, path):
|
||||||
if path[0] == '/':
|
if path[0] == '/':
|
||||||
path = path[1:]
|
path = path[1:]
|
||||||
|
@ -75,7 +82,7 @@ class DigitalOceanHelper:
|
||||||
url = self._url_builder(path)
|
url = self._url_builder(path)
|
||||||
data = self.module.jsonify(data)
|
data = self.module.jsonify(data)
|
||||||
|
|
||||||
resp, info = fetch_url(self.module, url, data=data, headers=self.headers, method=method)
|
resp, info = fetch_url(self.module, url, data=data, headers=self.headers, method=method, timeout=self.timeout)
|
||||||
|
|
||||||
return Response(resp, info)
|
return Response(resp, info)
|
||||||
|
|
||||||
|
@ -91,11 +98,15 @@ class DigitalOceanHelper:
|
||||||
def delete(self, path, data=None):
|
def delete(self, path, data=None):
|
||||||
return self.send('DELETE', path, data)
|
return self.send('DELETE', path, data)
|
||||||
|
|
||||||
def get_do_oauth_token(self):
|
@staticmethod
|
||||||
self.oauth_token = self.module.params.get('oauth_token') or \
|
def digital_ocean_argument_spec():
|
||||||
self.module.params.get('api_token') or \
|
return dict(
|
||||||
os.environ.get('DO_API_TOKEN') or \
|
validate_certs=dict(type='bool', required=False, default=True),
|
||||||
os.environ.get('DO_API_KEY') or \
|
oauth_token=dict(
|
||||||
os.environ.get('OAUTH_TOKEN')
|
no_log=True,
|
||||||
if self.oauth_token is None:
|
# Support environment variable for DigitalOcean OAuth Token
|
||||||
self.module.fail_json(msg='Unable to load api key: oauth_token')
|
fallback=(env_fallback, ['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN', 'OAUTH_TOKEN']),
|
||||||
|
required=False,
|
||||||
|
),
|
||||||
|
timeout=dict(type='int', default=30),
|
||||||
|
)
|
||||||
|
|
|
@ -31,10 +31,6 @@ options:
|
||||||
- Indicate desired state of the target.
|
- Indicate desired state of the target.
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
required: true
|
required: true
|
||||||
api_token:
|
|
||||||
description:
|
|
||||||
- DigitalOcean api token.
|
|
||||||
required: true
|
|
||||||
block_size:
|
block_size:
|
||||||
description:
|
description:
|
||||||
- The size of the Block Storage volume in gigabytes. Required when command=create and state=present. If snapshot_id is included, this will be ignored.
|
- The size of the Block Storage volume in gigabytes. Required when command=create and state=present. If snapshot_id is included, this will be ignored.
|
||||||
|
@ -56,11 +52,7 @@ options:
|
||||||
droplet_id:
|
droplet_id:
|
||||||
description:
|
description:
|
||||||
- The droplet id you want to operate on. Required when command=attach.
|
- The droplet id you want to operate on. Required when command=attach.
|
||||||
timeout:
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
description:
|
|
||||||
- The timeout in seconds used for polling DigitalOcean's API.
|
|
||||||
default: 10
|
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Two environment variables can be used, DO_API_KEY and DO_API_TOKEN.
|
- Two environment variables can be used, DO_API_KEY and DO_API_TOKEN.
|
||||||
They both refer to the v2 token.
|
They both refer to the v2 token.
|
||||||
|
@ -267,20 +259,21 @@ def handle_request(module):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
argument_spec = DigitalOceanHelper.digital_ocean_argument_spec()
|
||||||
argument_spec=dict(
|
argument_spec.update(
|
||||||
state=dict(choices=['present', 'absent'], required=True),
|
state=dict(choices=['present', 'absent'], required=True),
|
||||||
command=dict(choices=['create', 'attach'], required=True),
|
command=dict(choices=['create', 'attach'], required=True),
|
||||||
api_token=dict(aliases=['API_TOKEN'], no_log=True),
|
block_size=dict(type='int', required=False),
|
||||||
block_size=dict(type='int', required=False),
|
volume_name=dict(type='str', required=True),
|
||||||
volume_name=dict(type='str', required=True),
|
description=dict(type='str'),
|
||||||
description=dict(type='str'),
|
region=dict(type='str', required=False),
|
||||||
region=dict(type='str', required=False),
|
snapshot_id=dict(type='str', required=False),
|
||||||
snapshot_id=dict(type='str', required=False),
|
droplet_id=dict(type='int'),
|
||||||
droplet_id=dict(type='int'),
|
timeout=dict(type='int', default=10)
|
||||||
timeout=dict(type='int', default=10),
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
module = AnsibleModule(argument_spec=argument_spec)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
handle_request(module)
|
handle_request(module)
|
||||||
except DOBlockStorageException as e:
|
except DOBlockStorageException as e:
|
||||||
|
@ -288,5 +281,6 @@ def main():
|
||||||
except KeyError as e:
|
except KeyError as e:
|
||||||
module.fail_json(msg='Unable to load %s' % e.message, exception=traceback.format_exc())
|
module.fail_json(msg='Unable to load %s' % e.message, exception=traceback.format_exc())
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -39,12 +39,7 @@ options:
|
||||||
- Whether the certificate should be present or absent.
|
- Whether the certificate should be present or absent.
|
||||||
default: present
|
default: present
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
oauth_token:
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
description:
|
|
||||||
- DigitalOcean OAuth token.
|
|
||||||
required: true
|
|
||||||
aliases: ['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN']
|
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Two environment variables can be used, DO_API_KEY, DO_OAUTH_TOKEN and DO_API_TOKEN.
|
- Two environment variables can be used, DO_API_KEY, DO_OAUTH_TOKEN and DO_API_TOKEN.
|
||||||
They both refer to the v2 token.
|
They both refer to the v2 token.
|
||||||
|
@ -101,11 +96,6 @@ def core(module):
|
||||||
|
|
||||||
results = dict(changed=False)
|
results = dict(changed=False)
|
||||||
|
|
||||||
# Check if oauth_token is valid or not
|
|
||||||
response = rest.get('account')
|
|
||||||
if response.status_code == 401:
|
|
||||||
module.fail_json(msg='Failed to login using oauth_token, please verify validity of oauth_token')
|
|
||||||
|
|
||||||
response = rest.get('certificates')
|
response = rest.get('certificates')
|
||||||
status_code = response.status_code
|
status_code = response.status_code
|
||||||
resp_json = response.json
|
resp_json = response.json
|
||||||
|
@ -157,15 +147,17 @@ def core(module):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
argument_spec = DigitalOceanHelper.digital_ocean_argument_spec()
|
||||||
|
argument_spec.update(
|
||||||
|
name=dict(type='str'),
|
||||||
|
leaf_certificate=dict(type='str'),
|
||||||
|
private_key=dict(type='str', no_log=True),
|
||||||
|
state=dict(choices=['present', 'absent'], default='present'),
|
||||||
|
certificate_chain=dict(type='str')
|
||||||
|
)
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=argument_spec,
|
||||||
name=dict(type='str'),
|
|
||||||
leaf_certificate=dict(type='str'),
|
|
||||||
private_key=dict(type='str', no_log=True),
|
|
||||||
state=dict(choices=['present', 'absent'], default='present'),
|
|
||||||
certificate_chain=dict(type='str'),
|
|
||||||
oauth_token=dict(aliases=['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN'], no_log=True),
|
|
||||||
),
|
|
||||||
required_if=[('state', 'present', ['name', 'leaf_certificate', 'private_key']),
|
required_if=[('state', 'present', ['name', 'leaf_certificate', 'private_key']),
|
||||||
('state', 'absent', ['name'])
|
('state', 'absent', ['name'])
|
||||||
],
|
],
|
||||||
|
@ -176,5 +168,6 @@ def main():
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
module.fail_json(msg=to_native(e))
|
module.fail_json(msg=to_native(e))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -27,11 +27,6 @@ options:
|
||||||
- Indicate desired state of the target.
|
- Indicate desired state of the target.
|
||||||
default: present
|
default: present
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
oauth_token:
|
|
||||||
description:
|
|
||||||
- DigitalOcean api token.
|
|
||||||
version_added: "1.9.5"
|
|
||||||
aliases: ['API_TOKEN']
|
|
||||||
id:
|
id:
|
||||||
description:
|
description:
|
||||||
- Numeric, the droplet id you want to operate on.
|
- Numeric, the droplet id you want to operate on.
|
||||||
|
@ -42,7 +37,7 @@ options:
|
||||||
ip:
|
ip:
|
||||||
description:
|
description:
|
||||||
- The IP address to point a domain at.
|
- The IP address to point a domain at.
|
||||||
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
notes:
|
notes:
|
||||||
- Environment variables DO_OAUTH_TOKEN can be used for the oauth_token.
|
- Environment variables DO_OAUTH_TOKEN can be used for the oauth_token.
|
||||||
- As of Ansible 1.9.5 and 2.0, Version 2 of the DigitalOcean API is used, this removes C(client_id) and C(api_key) options in favor of C(oauth_token).
|
- As of Ansible 1.9.5 and 2.0, Version 2 of the DigitalOcean API is used, this removes C(client_id) and C(api_key) options in favor of C(oauth_token).
|
||||||
|
@ -84,7 +79,6 @@ import traceback
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
||||||
from ansible.module_utils._text import to_native
|
from ansible.module_utils._text import to_native
|
||||||
from ansible.module_utils.basic import env_fallback
|
|
||||||
|
|
||||||
|
|
||||||
class DoManager(DigitalOceanHelper, object):
|
class DoManager(DigitalOceanHelper, object):
|
||||||
|
@ -185,18 +179,16 @@ def core(module):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
|
argument_spec = DigitalOceanHelper.digital_ocean_argument_spec()
|
||||||
|
argument_spec.update(
|
||||||
|
state=dict(choices=['present', 'absent'], default='present'),
|
||||||
|
name=dict(type='str'),
|
||||||
|
id=dict(aliases=['droplet_id'], type='int'),
|
||||||
|
ip=dict(type='str')
|
||||||
|
)
|
||||||
|
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=argument_spec,
|
||||||
state=dict(choices=['present', 'absent'], default='present'),
|
|
||||||
oauth_token=dict(
|
|
||||||
aliases=['API_TOKEN'],
|
|
||||||
no_log=True,
|
|
||||||
fallback=(env_fallback, ['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN'])
|
|
||||||
),
|
|
||||||
name=dict(type='str'),
|
|
||||||
id=dict(aliases=['droplet_id'], type='int'),
|
|
||||||
ip=dict(type='str'),
|
|
||||||
),
|
|
||||||
required_one_of=(
|
required_one_of=(
|
||||||
['id', 'name'],
|
['id', 'name'],
|
||||||
),
|
),
|
||||||
|
|
|
@ -1,35 +1,27 @@
|
||||||
#!/usr/bin/python
|
#!/usr/bin/python
|
||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
|
# Copyright: (C) 2017-18, Ansible Project
|
||||||
# Copyright: Ansible Project
|
|
||||||
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
from __future__ import absolute_import, division, print_function
|
from __future__ import absolute_import, division, print_function
|
||||||
__metaclass__ = type
|
__metaclass__ = type
|
||||||
|
|
||||||
|
|
||||||
ANSIBLE_METADATA = {'status': ['preview'],
|
ANSIBLE_METADATA = {
|
||||||
'supported_by': 'community',
|
'status': ['preview'],
|
||||||
'metadata_version': '1.1'}
|
'supported_by': 'community',
|
||||||
|
'metadata_version': '1.1'
|
||||||
|
}
|
||||||
|
|
||||||
DOCUMENTATION = '''
|
DOCUMENTATION = '''
|
||||||
---
|
---
|
||||||
module: digital_ocean_floating_ip_facts
|
module: digital_ocean_floating_ip_facts
|
||||||
short_description: DigitalOcean Floating IPs facts
|
short_description: DigitalOcean Floating IPs facts
|
||||||
description:
|
description:
|
||||||
- Fetch DigitalOcean Floating IPs facts.
|
- This module can be used to fetch DigitalOcean Floating IPs facts.
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
author: "Patrick Marques (@pmarques)"
|
author: "Patrick Marques (@pmarques)"
|
||||||
options:
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
oauth_token:
|
|
||||||
description:
|
|
||||||
- DigitalOcean OAuth token.
|
|
||||||
required: true
|
|
||||||
timeout:
|
|
||||||
description:
|
|
||||||
- The timeout in seconds used for polling DigitalOcean's API.
|
|
||||||
default: 30
|
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Version 2 of DigitalOcean API is used.
|
- Version 2 of DigitalOcean API is used.
|
||||||
requirements:
|
requirements:
|
||||||
|
@ -84,12 +76,9 @@ floating_ips:
|
||||||
]
|
]
|
||||||
'''
|
'''
|
||||||
|
|
||||||
import json
|
|
||||||
import os
|
|
||||||
|
|
||||||
from ansible.module_utils.basic import env_fallback
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
||||||
|
from ansible.module_utils._text import to_native
|
||||||
|
|
||||||
|
|
||||||
def core(module):
|
def core(module):
|
||||||
|
@ -98,41 +87,34 @@ def core(module):
|
||||||
page = 1
|
page = 1
|
||||||
has_next = True
|
has_next = True
|
||||||
floating_ips = []
|
floating_ips = []
|
||||||
while has_next or 200 != status_code:
|
status_code = None
|
||||||
|
while has_next or status_code != 200:
|
||||||
response = rest.get("floating_ips?page={0}&per_page=20".format(page))
|
response = rest.get("floating_ips?page={0}&per_page=20".format(page))
|
||||||
status_code = response.status_code
|
status_code = response.status_code
|
||||||
# stop if any error during pagination
|
# stop if any error during pagination
|
||||||
if 200 != status_code:
|
if status_code != 200:
|
||||||
break
|
break
|
||||||
page = page + 1
|
page += 1
|
||||||
floating_ips.extend(response.json["floating_ips"])
|
floating_ips.extend(response.json["floating_ips"])
|
||||||
has_next = "pages" in response.json["links"] and "next" in response.json["links"]["pages"]
|
has_next = "pages" in response.json["links"] and "next" in response.json["links"]["pages"]
|
||||||
|
|
||||||
if status_code == 200:
|
if status_code == 200:
|
||||||
module.exit_json(changed=False, floating_ips=floating_ips)
|
module.exit_json(changed=False, floating_ips=floating_ips)
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg="Error fecthing facts [{0}: {1}]".format(
|
module.fail_json(msg="Error fetching facts [{0}: {1}]".format(
|
||||||
status_code, response.json["message"]))
|
status_code, response.json["message"]))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=DigitalOceanHelper.digital_ocean_argument_spec()
|
||||||
oauth_token=dict(
|
|
||||||
no_log=True,
|
|
||||||
# Support environment variable for DigitalOcean OAuth Token
|
|
||||||
fallback=(env_fallback, ['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN']),
|
|
||||||
required=True,
|
|
||||||
),
|
|
||||||
validate_certs=dict(type='bool', default=True),
|
|
||||||
timeout=dict(type='int', default=30),
|
|
||||||
),
|
|
||||||
)
|
)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
core(module)
|
core(module)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
module.fail_json(msg=str(e))
|
module.fail_json(msg=to_native(e))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -22,16 +22,7 @@ description:
|
||||||
- Fetch DigitalOcean SSH keys facts.
|
- Fetch DigitalOcean SSH keys facts.
|
||||||
version_added: "2.5"
|
version_added: "2.5"
|
||||||
author: "Patrick Marques (@pmarques)"
|
author: "Patrick Marques (@pmarques)"
|
||||||
options:
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
oauth_token:
|
|
||||||
description:
|
|
||||||
- DigitalOcean API token.
|
|
||||||
required: true
|
|
||||||
timeout:
|
|
||||||
description:
|
|
||||||
- The timeout in seconds used for polling DigitalOcean's API.
|
|
||||||
default: 30
|
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Version 2 of DigitalOcean API is used.
|
- Version 2 of DigitalOcean API is used.
|
||||||
requirements:
|
requirements:
|
||||||
|
@ -77,7 +68,6 @@ data:
|
||||||
}
|
}
|
||||||
'''
|
'''
|
||||||
|
|
||||||
from ansible.module_utils.basic import env_fallback
|
|
||||||
from ansible.module_utils.basic import AnsibleModule
|
from ansible.module_utils.basic import AnsibleModule
|
||||||
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
from ansible.module_utils.digital_ocean import DigitalOceanHelper
|
||||||
|
|
||||||
|
@ -91,26 +81,18 @@ def core(module):
|
||||||
if status_code == 200:
|
if status_code == 200:
|
||||||
module.exit_json(changed=False, ansible_facts=json)
|
module.exit_json(changed=False, ansible_facts=json)
|
||||||
else:
|
else:
|
||||||
module.fail_json(msg='Error fecthing facts [{0}: {1}]'.format(
|
module.fail_json(msg='Error fetching facts [{0}: {1}]'.format(
|
||||||
status_code, response.json['message']))
|
status_code, response.json['message']))
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=dict(
|
argument_spec=DigitalOceanHelper.digital_ocean_argument_spec(),
|
||||||
oauth_token=dict(
|
supports_check_mode=False,
|
||||||
no_log=True,
|
|
||||||
# Support environment variable for DigitalOcean OAuth Token
|
|
||||||
fallback=(env_fallback, ['DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN']),
|
|
||||||
required=True,
|
|
||||||
),
|
|
||||||
validate_certs=dict(type='bool', default=True),
|
|
||||||
timeout=dict(type='int', default=30),
|
|
||||||
),
|
|
||||||
supports_check_mode=True,
|
|
||||||
)
|
)
|
||||||
|
|
||||||
core(module)
|
core(module)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
main()
|
main()
|
||||||
|
|
|
@ -43,10 +43,7 @@ options:
|
||||||
- Whether the tag should be present or absent on the resource.
|
- Whether the tag should be present or absent on the resource.
|
||||||
default: present
|
default: present
|
||||||
choices: ['present', 'absent']
|
choices: ['present', 'absent']
|
||||||
api_token:
|
extends_documentation_fragment: digital_ocean.documentation
|
||||||
description:
|
|
||||||
- DigitalOcean api token.
|
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- Two environment variables can be used, DO_API_KEY and DO_API_TOKEN.
|
- Two environment variables can be used, DO_API_KEY and DO_API_TOKEN.
|
||||||
They both refer to the v2 token.
|
They both refer to the v2 token.
|
||||||
|
@ -119,11 +116,6 @@ def core(module):
|
||||||
|
|
||||||
rest = DigitalOceanHelper(module)
|
rest = DigitalOceanHelper(module)
|
||||||
|
|
||||||
# Check if api_token is valid or not
|
|
||||||
response = rest.get('account')
|
|
||||||
if response.status_code == 401:
|
|
||||||
module.fail_json(msg='Failed to login using api_token, please verify '
|
|
||||||
'validity of api_token')
|
|
||||||
if state == 'present':
|
if state == 'present':
|
||||||
response = rest.get('tags/{0}'.format(name))
|
response = rest.get('tags/{0}'.format(name))
|
||||||
status_code = response.status_code
|
status_code = response.status_code
|
||||||
|
@ -197,16 +189,16 @@ def core(module):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
module = AnsibleModule(
|
argument_spec = DigitalOceanHelper.digital_ocean_argument_spec()
|
||||||
argument_spec=dict(
|
argument_spec.update(
|
||||||
name=dict(type='str', required=True),
|
name=dict(type='str', required=True),
|
||||||
resource_id=dict(aliases=['droplet_id'], type='str'),
|
resource_id=dict(aliases=['droplet_id'], type='str'),
|
||||||
resource_type=dict(choices=['droplet'], default='droplet'),
|
resource_type=dict(choices=['droplet'], default='droplet'),
|
||||||
state=dict(choices=['present', 'absent'], default='present'),
|
state=dict(choices=['present', 'absent'], default='present'),
|
||||||
api_token=dict(aliases=['API_TOKEN'], no_log=True),
|
|
||||||
)
|
|
||||||
)
|
)
|
||||||
|
|
||||||
|
module = AnsibleModule(argument_spec=argument_spec)
|
||||||
|
|
||||||
try:
|
try:
|
||||||
core(module)
|
core(module)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
|
|
26
lib/ansible/utils/module_docs_fragments/digital_ocean.py
Normal file
26
lib/ansible/utils/module_docs_fragments/digital_ocean.py
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
# Copyright (c) 2018, Ansible Project
|
||||||
|
# Copyright (c) 2018, Abhijeet Kasurde (akasurde@redhat.com)
|
||||||
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||||
|
|
||||||
|
|
||||||
|
class ModuleDocFragment(object):
|
||||||
|
# Parameters for DigitalOcean modules
|
||||||
|
DOCUMENTATION = '''
|
||||||
|
options:
|
||||||
|
oauth_token:
|
||||||
|
description:
|
||||||
|
- DigitalOcean OAuth token.
|
||||||
|
- "There are several other environment variables which can be used to provide this value."
|
||||||
|
- "i.e., - 'DO_API_TOKEN', 'DO_API_KEY', 'DO_OAUTH_TOKEN' and 'OAUTH_TOKEN'"
|
||||||
|
required: false
|
||||||
|
timeout:
|
||||||
|
description:
|
||||||
|
- The timeout in seconds used for polling DigitalOcean's API.
|
||||||
|
default: 30
|
||||||
|
validate_certs:
|
||||||
|
description:
|
||||||
|
- If set to C(no), the SSL certificates will not be validated.
|
||||||
|
- This should only set to C(no) used on personally controlled sites using self-signed certificates.
|
||||||
|
default: true
|
||||||
|
|
||||||
|
'''
|
Loading…
Reference in a new issue