mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 03:11:24 -07:00
* openstack: standardize tls params * tower: tower_verify_ssl->validate_certs * docker: use standard tls config params - cacert_path -> ca_cert - cert_path -> client_cert - key_path -> client_key - tls_verify -> validate_certs * k8s: standardize tls connection params - verify_ssl -> validate_certs - ssl_ca_cert -> ca_cert - cert_file -> client_cert - key_file -> client_key * ingate: verify_ssl -> validate_certs * manageiq: standardize tls params - verify_ssl -> validate_certs - ca_bundle_path -> ca_cert * mysql: standardize tls params - ssl_ca -> ca_cert - ssl_cert -> client_cert - ssl_key -> client_key * nios: ssl_verify -> validate_certs * postgresql: ssl_rootcert -> ca_cert * rabbitmq: standardize tls params - cacert -> ca_cert - cert -> client_cert - key -> client_key * rackspace: verify_ssl -> validate_certs * vca: verify_certs -> validate_certs * kubevirt_cdi_upload: upload_host_verify_ssl -> upload_host_validate_certs * lxd: standardize tls params - key_file -> client_key - cert_file -> client_cert * get_certificate: ca_certs -> ca_cert * get_certificate.py: clarify one or more certs in a file Co-Authored-By: jamescassell <code@james.cassell.me> * zabbix: tls_issuer -> ca_cert * bigip_device_auth_ldap: standardize tls params - ssl_check_peer -> validate_certs - ssl_client_cert -> client_cert - ssl_client_key -> client_key - ssl_ca_cert -> ca_cert * vdirect: vdirect_validate_certs -> validate_certs * mqtt: standardize tls params - ca_certs -> ca_cert - certfile -> client_cert - keyfile -> client_key * pulp_repo: standardize tls params remove `importer_ssl` prefix * rhn_register: sslcacert -> ca_cert * yum_repository: standardize tls params The fix for yum_repository is not straightforward since this module is only a thin wrapper for the underlying commands and config. In this case, we add the new values as aliases, keeping the old as primary, only due to the internal structure of the module. Aliases added: - sslcacert -> ca_cert - sslclientcert -> client_cert - sslclientkey -> client_key - sslverify -> validate_certs * gitlab_hook: enable_ssl_verification -> hook_validate_certs * Adjust arguments for docker_swarm inventory plugin. * foreman callback: standardize tls params - ssl_cert -> client_cert - ssl_key -> client_key * grafana_annotations: validate_grafana_certs -> validate_certs * nrdp callback: validate_nrdp_certs -> validate_certs * kubectl connection: standardize tls params - kubectl_cert_file -> client_cert - kubectl_key_file -> client_key - kubectl_ssl_ca_cert -> ca_cert - kubectl_verify_ssl -> validate_certs * oc connection: standardize tls params - oc_cert_file -> client_cert - oc_key_file -> client_key - oc_ssl_ca_cert -> ca_cert - oc_verify_ssl -> validate_certs * psrp connection: cert_trust_path -> ca_cert TODO: cert_validation -> validate_certs (multi-valued vs bool) * k8s inventory: standardize tls params - cert_file -> client_cert - key_file -> client_key - ca_cert -> ca_cert - verify_ssl -> validate_certs * openshift inventory: standardize tls params - cert_file -> client_cert - key_file -> client_key - ca_cert -> ca_cert - verify_ssl -> validate_certs * tower inventory: verify_ssl -> validate_certs * hashi_vault lookup: cacert -> ca_cert * k8s lookup: standardize tls params - cert_file -> client_cert - key_file -> client_key - ca_cert -> ca_cert - verify_ssl -> validate_certs * laps_passord lookup: cacert_file -> ca_cert * changelog for TLS parameter standardization
208 lines
6.6 KiB
Python
208 lines
6.6 KiB
Python
#!/usr/bin/python
|
|
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright: (c) 2015, Manuel Sousa <manuel.sousa@gmail.com>
|
|
# 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 = {'metadata_version': '1.1',
|
|
'status': ['preview'],
|
|
'supported_by': 'community'}
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: rabbitmq_exchange
|
|
author: Manuel Sousa (@manuel-sousa)
|
|
version_added: "2.0"
|
|
|
|
short_description: Manage rabbitMQ exchanges
|
|
description:
|
|
- This module uses rabbitMQ Rest API to create/delete exchanges
|
|
requirements: [ "requests >= 1.0.0" ]
|
|
options:
|
|
name:
|
|
description:
|
|
- Name of the exchange to create
|
|
required: true
|
|
state:
|
|
description:
|
|
- Whether the exchange should be present or absent
|
|
choices: [ "present", "absent" ]
|
|
required: false
|
|
default: present
|
|
durable:
|
|
description:
|
|
- whether exchange is durable or not
|
|
required: false
|
|
type: bool
|
|
default: yes
|
|
exchange_type:
|
|
description:
|
|
- type for the exchange
|
|
required: false
|
|
choices: [ "fanout", "direct", "headers", "topic" ]
|
|
aliases: [ "type" ]
|
|
default: direct
|
|
auto_delete:
|
|
description:
|
|
- if the exchange should delete itself after all queues/exchanges unbound from it
|
|
required: false
|
|
type: bool
|
|
default: no
|
|
internal:
|
|
description:
|
|
- exchange is available only for other exchanges
|
|
required: false
|
|
type: bool
|
|
default: no
|
|
arguments:
|
|
description:
|
|
- extra arguments for exchange. If defined this argument is a key/value dictionary
|
|
required: false
|
|
default: {}
|
|
extends_documentation_fragment:
|
|
- rabbitmq
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
# Create direct exchange
|
|
- rabbitmq_exchange:
|
|
name: directExchange
|
|
|
|
# Create topic exchange on vhost
|
|
- rabbitmq_exchange:
|
|
name: topicExchange
|
|
type: topic
|
|
vhost: myVhost
|
|
'''
|
|
|
|
import json
|
|
import traceback
|
|
|
|
REQUESTS_IMP_ERR = None
|
|
try:
|
|
import requests
|
|
HAS_REQUESTS = True
|
|
except ImportError:
|
|
REQUESTS_IMP_ERR = traceback.format_exc()
|
|
HAS_REQUESTS = False
|
|
|
|
from ansible.module_utils.basic import AnsibleModule, missing_required_lib
|
|
from ansible.module_utils.six.moves.urllib import parse as urllib_parse
|
|
from ansible.module_utils.rabbitmq import rabbitmq_argument_spec
|
|
|
|
|
|
def main():
|
|
|
|
argument_spec = rabbitmq_argument_spec()
|
|
argument_spec.update(
|
|
dict(
|
|
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
|
name=dict(required=True, type='str'),
|
|
durable=dict(default=True, type='bool'),
|
|
auto_delete=dict(default=False, type='bool'),
|
|
internal=dict(default=False, type='bool'),
|
|
exchange_type=dict(default='direct', aliases=['type'], type='str'),
|
|
arguments=dict(default=dict(), type='dict')
|
|
)
|
|
)
|
|
module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=True)
|
|
|
|
url = "%s://%s:%s/api/exchanges/%s/%s" % (
|
|
module.params['login_protocol'],
|
|
module.params['login_host'],
|
|
module.params['login_port'],
|
|
urllib_parse.quote(module.params['vhost'], ''),
|
|
urllib_parse.quote(module.params['name'], '')
|
|
)
|
|
|
|
if not HAS_REQUESTS:
|
|
module.fail_json(msg=missing_required_lib("requests"), exception=REQUESTS_IMP_ERR)
|
|
|
|
result = dict(changed=False, name=module.params['name'])
|
|
|
|
# Check if exchange already exists
|
|
r = requests.get(url, auth=(module.params['login_user'], module.params['login_password']),
|
|
verify=module.params['ca_cert'], cert=(module.params['client_cert'], module.params['client_key']))
|
|
|
|
if r.status_code == 200:
|
|
exchange_exists = True
|
|
response = r.json()
|
|
elif r.status_code == 404:
|
|
exchange_exists = False
|
|
response = r.text
|
|
else:
|
|
module.fail_json(
|
|
msg="Invalid response from RESTAPI when trying to check if exchange exists",
|
|
details=r.text
|
|
)
|
|
|
|
if module.params['state'] == 'present':
|
|
change_required = not exchange_exists
|
|
else:
|
|
change_required = exchange_exists
|
|
|
|
# Check if attributes change on existing exchange
|
|
if not change_required and r.status_code == 200 and module.params['state'] == 'present':
|
|
if not (
|
|
response['durable'] == module.params['durable'] and
|
|
response['auto_delete'] == module.params['auto_delete'] and
|
|
response['internal'] == module.params['internal'] and
|
|
response['type'] == module.params['exchange_type']
|
|
):
|
|
module.fail_json(
|
|
msg="RabbitMQ RESTAPI doesn't support attribute changes for existing exchanges"
|
|
)
|
|
|
|
# Exit if check_mode
|
|
if module.check_mode:
|
|
result['changed'] = change_required
|
|
result['details'] = response
|
|
result['arguments'] = module.params['arguments']
|
|
module.exit_json(**result)
|
|
|
|
# Do changes
|
|
if change_required:
|
|
if module.params['state'] == 'present':
|
|
r = requests.put(
|
|
url,
|
|
auth=(module.params['login_user'], module.params['login_password']),
|
|
headers={"content-type": "application/json"},
|
|
data=json.dumps({
|
|
"durable": module.params['durable'],
|
|
"auto_delete": module.params['auto_delete'],
|
|
"internal": module.params['internal'],
|
|
"type": module.params['exchange_type'],
|
|
"arguments": module.params['arguments']
|
|
}),
|
|
verify=module.params['ca_cert'],
|
|
cert=(module.params['client_cert'], module.params['client_key'])
|
|
)
|
|
elif module.params['state'] == 'absent':
|
|
r = requests.delete(url, auth=(module.params['login_user'], module.params['login_password']),
|
|
verify=module.params['ca_cert'], cert=(module.params['client_cert'], module.params['client_key']))
|
|
|
|
# RabbitMQ 3.6.7 changed this response code from 204 to 201
|
|
if r.status_code == 204 or r.status_code == 201:
|
|
result['changed'] = True
|
|
module.exit_json(**result)
|
|
else:
|
|
module.fail_json(
|
|
msg="Error creating exchange",
|
|
status=r.status_code,
|
|
details=r.text
|
|
)
|
|
|
|
else:
|
|
module.exit_json(
|
|
changed=False,
|
|
name=module.params['name']
|
|
)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|