mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
105 lines
2.7 KiB
Python
105 lines
2.7 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
#
|
|
# Copyright: Ansible Project
|
|
# 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
|
|
__metaclass__ = type
|
|
|
|
|
|
ANSIBLE_METADATA = {'status': ['deprecated'],
|
|
'supported_by': 'community',
|
|
'metadata_version': '1.1'}
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: digital_ocean_sshkey_facts
|
|
deprecated:
|
|
removed_in: '2.13'
|
|
why: Deprecated in favour of C(_info) module.
|
|
alternative: Use M(digital_ocean_sshkey_info) instead.
|
|
short_description: DigitalOcean SSH keys facts
|
|
description:
|
|
- Fetch DigitalOcean SSH keys facts.
|
|
author: "Patrick Marques (@pmarques)"
|
|
extends_documentation_fragment:
|
|
- community.general.digital_ocean.documentation
|
|
|
|
notes:
|
|
- Version 2 of DigitalOcean API is used.
|
|
requirements:
|
|
- "python >= 2.6"
|
|
'''
|
|
|
|
|
|
EXAMPLES = '''
|
|
- digital_ocean_sshkey_facts:
|
|
oauth_token: "{{ my_do_key }}"
|
|
|
|
- set_fact:
|
|
pubkey: "{{ item.public_key }}"
|
|
loop: "{{ ssh_keys|json_query(ssh_pubkey) }}"
|
|
vars:
|
|
ssh_pubkey: "[?name=='ansible_ctrl']"
|
|
|
|
- debug:
|
|
msg: "{{ pubkey }}"
|
|
'''
|
|
|
|
|
|
RETURN = '''
|
|
# Digital Ocean API info https://developers.digitalocean.com/documentation/v2/#list-all-keys
|
|
data:
|
|
description: List of SSH keys on DigitalOcean
|
|
returned: success and no resource constraint
|
|
type: dict
|
|
sample: {
|
|
"ssh_keys": [
|
|
{
|
|
"id": 512189,
|
|
"fingerprint": "3b:16:bf:e4:8b:00:8b:b8:59:8c:a9:d3:f0:19:45:fa",
|
|
"public_key": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAAAQQDDHr/jh2Jy4yALcK4JyWbVkPRaWmhck3IgCoeOO3z1e2dBowLh64QAM+Qb72pxekALga2oi4GvT+TlWNhzPH4V example",
|
|
"name": "My SSH Public Key"
|
|
}
|
|
],
|
|
"links": {
|
|
},
|
|
"meta": {
|
|
"total": 1
|
|
}
|
|
}
|
|
'''
|
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
from ansible_collections.community.general.plugins.module_utils.digital_ocean import DigitalOceanHelper
|
|
|
|
|
|
def core(module):
|
|
rest = DigitalOceanHelper(module)
|
|
|
|
response = rest.get("account/keys")
|
|
status_code = response.status_code
|
|
json = response.json
|
|
if status_code == 200:
|
|
module.exit_json(changed=False, ansible_facts=json)
|
|
else:
|
|
module.fail_json(msg='Error fetching facts [{0}: {1}]'.format(
|
|
status_code, response.json['message']))
|
|
|
|
|
|
def main():
|
|
module = AnsibleModule(
|
|
argument_spec=DigitalOceanHelper.digital_ocean_argument_spec(),
|
|
supports_check_mode=False,
|
|
)
|
|
|
|
module.deprecate("The 'digital_ocean_sshkey_facts' module has been deprecated, use the new 'digital_ocean_sshkey_info' module", version='2.13')
|
|
|
|
core(module)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|