2016-09-07 14:34:00 +00:00
|
|
|
#!/usr/bin/python
|
2017-10-04 19:16:17 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2016-09-07 14:34:00 +00:00
|
|
|
#
|
2018-11-03 03:56:33 +00:00
|
|
|
# Copyright: (c) 2017, F5 Networks Inc.
|
2017-10-04 19:16:17 +00:00
|
|
|
# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-11-01 04:17:07 +00:00
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
2017-08-16 03:16:38 +00:00
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
2018-06-20 19:16:43 +00:00
|
|
|
'status': ['stableinterface'],
|
2018-10-12 15:57:28 +00:00
|
|
|
'supported_by': 'certified'}
|
2016-12-06 10:35:25 +00:00
|
|
|
|
2017-11-01 04:17:07 +00:00
|
|
|
DOCUMENTATION = r'''
|
2018-11-03 03:56:33 +00:00
|
|
|
---
|
2016-09-07 14:34:00 +00:00
|
|
|
module: bigip_ssl_certificate
|
2017-11-01 04:17:07 +00:00
|
|
|
short_description: Import/Delete certificates from BIG-IP
|
2016-09-07 14:34:00 +00:00
|
|
|
description:
|
|
|
|
- This module will import/delete SSL certificates on BIG-IP LTM.
|
|
|
|
Certificates can be imported from certificate and key files on the local
|
|
|
|
disk, in PEM format.
|
|
|
|
version_added: 2.2
|
|
|
|
options:
|
2018-01-13 05:49:12 +00:00
|
|
|
content:
|
2016-09-07 14:34:00 +00:00
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- Sets the contents of a certificate directly to the specified value.
|
|
|
|
This is used with lookup plugins or for anything with formatting or
|
|
|
|
- C(content) must be provided when C(state) is C(present).
|
|
|
|
aliases: ['cert_content']
|
2016-09-07 14:34:00 +00:00
|
|
|
state:
|
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- Certificate state. This determines if the provided certificate
|
2016-09-07 14:34:00 +00:00
|
|
|
and key is to be made C(present) on the device or C(absent).
|
|
|
|
default: present
|
|
|
|
choices:
|
|
|
|
- present
|
|
|
|
- absent
|
|
|
|
name:
|
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- SSL Certificate Name. This is the cert name used when importing a certificate
|
|
|
|
into the F5. It also determines the filenames of the objects on the LTM.
|
2017-06-28 16:26:39 +00:00
|
|
|
required: True
|
2018-01-13 05:49:12 +00:00
|
|
|
issuer_cert:
|
2016-09-07 14:34:00 +00:00
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- Issuer certificate used for OCSP monitoring.
|
|
|
|
- This parameter is only valid on versions of BIG-IP 13.0.0 or above.
|
|
|
|
version_added: 2.5
|
|
|
|
partition:
|
2016-09-07 14:34:00 +00:00
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- Device partition to manage resources on.
|
|
|
|
default: Common
|
|
|
|
version_added: 2.5
|
2016-09-07 14:34:00 +00:00
|
|
|
notes:
|
2017-06-28 16:26:39 +00:00
|
|
|
- This module does not behave like other modules that you might include in
|
|
|
|
roles where referencing files or templates first looks in the role's
|
|
|
|
files or templates directory. To have it behave that way, use the Ansible
|
|
|
|
file or template lookup (see Examples). The lookups behave as expected in
|
|
|
|
a role context.
|
2016-09-07 14:34:00 +00:00
|
|
|
extends_documentation_fragment: f5
|
|
|
|
requirements:
|
2017-11-01 04:17:07 +00:00
|
|
|
- BIG-IP >= v12
|
2016-09-07 14:34:00 +00:00
|
|
|
author:
|
2017-11-01 04:17:07 +00:00
|
|
|
- Tim Rupp (@caphrim007)
|
2018-11-03 03:56:33 +00:00
|
|
|
- Wojciech Wypior (@wojtek0806)
|
2016-09-07 14:34:00 +00:00
|
|
|
'''
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
EXAMPLES = r'''
|
2016-09-07 14:34:00 +00:00
|
|
|
- name: Use a file lookup to import PEM Certificate
|
|
|
|
bigip_ssl_certificate:
|
2017-11-01 04:17:07 +00:00
|
|
|
name: certificate-name
|
|
|
|
state: present
|
2018-01-13 05:49:12 +00:00
|
|
|
content: "{{ lookup('file', '/path/to/cert.crt') }}"
|
2018-12-04 18:31:25 +00:00
|
|
|
provider:
|
|
|
|
server: lb.mydomain.com
|
|
|
|
user: admin
|
|
|
|
password: secret
|
2017-11-01 04:17:07 +00:00
|
|
|
delegate_to: localhost
|
|
|
|
|
|
|
|
- name: Use a file lookup to import CA certificate chain
|
|
|
|
bigip_ssl_certificate:
|
|
|
|
name: ca-chain-name
|
|
|
|
state: present
|
2018-01-13 05:49:12 +00:00
|
|
|
content: "{{ lookup('file', '/path/to/ca-chain.crt') }}"
|
2018-12-04 18:31:25 +00:00
|
|
|
provider:
|
|
|
|
server: lb.mydomain.com
|
|
|
|
user: admin
|
|
|
|
password: secret
|
2016-09-07 14:34:00 +00:00
|
|
|
delegate_to: localhost
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
- name: Delete Certificate
|
2016-09-07 14:34:00 +00:00
|
|
|
bigip_ssl_certificate:
|
2017-11-01 04:17:07 +00:00
|
|
|
name: certificate-name
|
|
|
|
state: absent
|
2018-12-04 18:31:25 +00:00
|
|
|
provider:
|
|
|
|
server: lb.mydomain.com
|
|
|
|
user: admin
|
|
|
|
password: secret
|
2016-09-07 14:34:00 +00:00
|
|
|
delegate_to: localhost
|
|
|
|
'''
|
|
|
|
|
2017-11-01 04:17:07 +00:00
|
|
|
RETURN = r'''
|
2016-09-07 14:34:00 +00:00
|
|
|
cert_name:
|
2017-11-01 04:17:07 +00:00
|
|
|
description: The name of the certificate that the user provided
|
|
|
|
returned: created
|
|
|
|
type: string
|
|
|
|
sample: cert1
|
2018-01-13 05:49:12 +00:00
|
|
|
filename:
|
2017-11-01 04:17:07 +00:00
|
|
|
description:
|
2018-01-13 05:49:12 +00:00
|
|
|
- The name of the SSL certificate.
|
2017-11-01 04:17:07 +00:00
|
|
|
returned: created
|
|
|
|
type: string
|
|
|
|
sample: cert1.crt
|
2018-01-13 05:49:12 +00:00
|
|
|
checksum:
|
2017-11-01 04:17:07 +00:00
|
|
|
description: SHA1 checksum of the cert that was provided.
|
|
|
|
returned: changed and created
|
|
|
|
type: string
|
|
|
|
sample: f7ff9e8b7bb2e09b70935a5d785e0cc5d9d0abf0
|
2018-01-13 05:49:12 +00:00
|
|
|
source_path:
|
2017-11-01 04:17:07 +00:00
|
|
|
description: Path on BIG-IP where the source of the certificate is stored.
|
|
|
|
returned: created
|
|
|
|
type: string
|
|
|
|
sample: /var/config/rest/downloads/cert1.crt
|
2016-09-07 14:34:00 +00:00
|
|
|
'''
|
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
import hashlib
|
|
|
|
import os
|
|
|
|
import re
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
|
|
|
from ansible.module_utils.basic import env_fallback
|
|
|
|
|
2016-09-07 14:34:00 +00:00
|
|
|
try:
|
2018-11-03 03:56:33 +00:00
|
|
|
from library.module_utils.network.f5.bigip import F5RestClient
|
2018-01-13 05:49:12 +00:00
|
|
|
from library.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from library.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from library.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from library.module_utils.network.f5.common import f5_argument_spec
|
2018-11-03 03:56:33 +00:00
|
|
|
from library.module_utils.network.f5.common import exit_json
|
|
|
|
from library.module_utils.network.f5.common import fail_json
|
|
|
|
from library.module_utils.network.f5.common import fq_name
|
|
|
|
from library.module_utils.network.f5.common import transform_name
|
|
|
|
from library.module_utils.network.f5.icontrol import upload_file
|
2016-09-07 14:34:00 +00:00
|
|
|
except ImportError:
|
2018-11-03 03:56:33 +00:00
|
|
|
from ansible.module_utils.network.f5.bigip import F5RestClient
|
2018-01-13 05:49:12 +00:00
|
|
|
from ansible.module_utils.network.f5.common import F5ModuleError
|
|
|
|
from ansible.module_utils.network.f5.common import AnsibleF5Parameters
|
|
|
|
from ansible.module_utils.network.f5.common import cleanup_tokens
|
|
|
|
from ansible.module_utils.network.f5.common import f5_argument_spec
|
2018-11-03 03:56:33 +00:00
|
|
|
from ansible.module_utils.network.f5.common import exit_json
|
|
|
|
from ansible.module_utils.network.f5.common import fail_json
|
|
|
|
from ansible.module_utils.network.f5.common import fq_name
|
|
|
|
from ansible.module_utils.network.f5.common import transform_name
|
|
|
|
from ansible.module_utils.network.f5.icontrol import upload_file
|
2017-11-01 04:17:07 +00:00
|
|
|
|
|
|
|
try:
|
2018-01-13 05:49:12 +00:00
|
|
|
from StringIO import StringIO
|
2017-11-01 04:17:07 +00:00
|
|
|
except ImportError:
|
2018-01-13 05:49:12 +00:00
|
|
|
from io import StringIO
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
class Parameters(AnsibleF5Parameters):
|
2018-11-03 03:56:33 +00:00
|
|
|
download_path = '/var/config/rest/downloads'
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
api_map = {
|
|
|
|
'sourcePath': 'source_path',
|
2018-11-03 03:56:33 +00:00
|
|
|
'issuerCert': 'issuer_cert',
|
2018-01-13 05:49:12 +00:00
|
|
|
}
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
updatables = [
|
|
|
|
'content',
|
|
|
|
'issuer_cert',
|
|
|
|
'source_path',
|
|
|
|
]
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
returnables = [
|
2018-11-03 03:56:33 +00:00
|
|
|
'filename',
|
|
|
|
'checksum',
|
|
|
|
'source_path',
|
|
|
|
'issuer_cert',
|
2018-01-13 05:49:12 +00:00
|
|
|
]
|
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
api_attributes = [
|
|
|
|
'issuerCert',
|
|
|
|
'sourcePath',
|
|
|
|
]
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
|
|
|
|
class ApiParameters(Parameters):
|
2017-06-28 16:26:39 +00:00
|
|
|
@property
|
|
|
|
def checksum(self):
|
|
|
|
if self._values['checksum'] is None:
|
|
|
|
return None
|
|
|
|
pattern = r'SHA1:\d+:(?P<value>[\w+]{40})'
|
|
|
|
matches = re.match(pattern, self._values['checksum'])
|
|
|
|
if matches:
|
|
|
|
return matches.group('value')
|
|
|
|
else:
|
|
|
|
return None
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
@property
|
|
|
|
def filename(self):
|
|
|
|
return self._values['name']
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
class ModuleParameters(Parameters):
|
2018-11-03 03:56:33 +00:00
|
|
|
def _get_hash(self, content):
|
|
|
|
k = hashlib.sha1()
|
|
|
|
s = StringIO(content)
|
|
|
|
while True:
|
|
|
|
data = s.read(1024)
|
|
|
|
if not data:
|
|
|
|
break
|
|
|
|
k.update(data.encode('utf-8'))
|
|
|
|
return k.hexdigest()
|
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
@property
|
2018-01-13 05:49:12 +00:00
|
|
|
def issuer_cert(self):
|
|
|
|
if self._values['issuer_cert'] is None:
|
|
|
|
return None
|
2018-04-24 04:42:06 +00:00
|
|
|
name = fq_name(self.partition, self._values['issuer_cert'])
|
2018-01-13 05:49:12 +00:00
|
|
|
if name.endswith('.crt'):
|
|
|
|
return name
|
2017-12-03 04:17:14 +00:00
|
|
|
else:
|
2018-01-13 05:49:12 +00:00
|
|
|
return name + '.crt'
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
@property
|
2018-01-13 05:49:12 +00:00
|
|
|
def checksum(self):
|
|
|
|
if self.content is None:
|
2017-06-28 16:26:39 +00:00
|
|
|
return None
|
2018-01-13 05:49:12 +00:00
|
|
|
return self._get_hash(self.content)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
@property
|
2018-01-13 05:49:12 +00:00
|
|
|
def filename(self):
|
|
|
|
if self.name.endswith('.crt'):
|
|
|
|
return self.name
|
|
|
|
else:
|
|
|
|
return self.name + '.crt'
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
@property
|
2018-01-13 05:49:12 +00:00
|
|
|
def source_path(self):
|
2017-06-28 16:26:39 +00:00
|
|
|
result = 'file://' + os.path.join(
|
2018-11-03 03:56:33 +00:00
|
|
|
self.download_path,
|
2018-01-13 05:49:12 +00:00
|
|
|
self.filename
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
|
|
|
return result
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
class Changes(Parameters):
|
|
|
|
def to_return(self):
|
|
|
|
result = {}
|
|
|
|
try:
|
|
|
|
for returnable in self.returnables:
|
|
|
|
result[returnable] = getattr(self, returnable)
|
|
|
|
result = self._filter_params(result)
|
|
|
|
except Exception:
|
|
|
|
pass
|
|
|
|
return result
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
class ReportableChanges(Changes):
|
|
|
|
pass
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
class UsableChanges(Changes):
|
|
|
|
pass
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
class Difference(object):
|
|
|
|
def __init__(self, want, have=None):
|
|
|
|
self.want = want
|
|
|
|
self.have = have
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
def compare(self, param):
|
2017-06-28 16:26:39 +00:00
|
|
|
try:
|
2018-01-13 05:49:12 +00:00
|
|
|
result = getattr(self, param)
|
|
|
|
return result
|
|
|
|
except AttributeError:
|
|
|
|
result = self.__default(param)
|
|
|
|
return result
|
|
|
|
|
|
|
|
def __default(self, param):
|
|
|
|
attr1 = getattr(self.want, param)
|
|
|
|
try:
|
|
|
|
attr2 = getattr(self.have, param)
|
|
|
|
if attr1 != attr2:
|
|
|
|
return attr1
|
|
|
|
except AttributeError:
|
|
|
|
return attr1
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
@property
|
|
|
|
def source_path(self):
|
|
|
|
if self.want.source_path is None:
|
|
|
|
return None
|
|
|
|
if self.want.source_path == self.have.source_path:
|
|
|
|
if self.content:
|
|
|
|
return self.want.source_path
|
|
|
|
if self.want.source_path != self.have.source_path:
|
|
|
|
return self.want.source_path
|
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
@property
|
2018-01-13 05:49:12 +00:00
|
|
|
def content(self):
|
|
|
|
if self.want.checksum != self.have.checksum:
|
|
|
|
result = dict(
|
|
|
|
checksum=self.want.checksum,
|
|
|
|
content=self.want.content
|
|
|
|
)
|
|
|
|
return result
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ModuleManager(object):
|
2018-01-13 05:49:12 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
self.module = kwargs.get('module', None)
|
|
|
|
self.client = kwargs.get('client', None)
|
|
|
|
self.want = ModuleParameters(params=self.module.params)
|
|
|
|
self.have = ApiParameters()
|
|
|
|
self.changes = UsableChanges()
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def exec_module(self):
|
|
|
|
changed = False
|
2016-09-07 14:34:00 +00:00
|
|
|
result = dict()
|
2017-06-28 16:26:39 +00:00
|
|
|
state = self.want.state
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
if state == "present":
|
|
|
|
changed = self.present()
|
|
|
|
elif state == "absent":
|
|
|
|
changed = self.absent()
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
reportable = ReportableChanges(params=self.changes.to_return())
|
|
|
|
changes = reportable.to_return()
|
2017-06-28 16:26:39 +00:00
|
|
|
result.update(**changes)
|
2016-09-07 14:34:00 +00:00
|
|
|
result.update(dict(changed=changed))
|
2018-01-13 05:49:12 +00:00
|
|
|
self._announce_deprecations(result)
|
2016-09-07 14:34:00 +00:00
|
|
|
return result
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
def _announce_deprecations(self, result):
|
|
|
|
warnings = result.pop('__warnings', [])
|
2017-06-28 16:26:39 +00:00
|
|
|
for warning in warnings:
|
2018-01-13 05:49:12 +00:00
|
|
|
self.module.deprecate(
|
2017-06-28 16:26:39 +00:00
|
|
|
msg=warning['msg'],
|
|
|
|
version=warning['version']
|
|
|
|
)
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
def present(self):
|
2016-09-07 14:34:00 +00:00
|
|
|
if self.exists():
|
2017-06-28 16:26:39 +00:00
|
|
|
return self.update()
|
|
|
|
else:
|
|
|
|
return self.create()
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
def create(self):
|
|
|
|
self._set_changed_options()
|
2018-01-13 05:49:12 +00:00
|
|
|
if self.module.check_mode:
|
2017-06-28 16:26:39 +00:00
|
|
|
return True
|
|
|
|
self.create_on_device()
|
|
|
|
return True
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
def should_update(self):
|
|
|
|
result = self._update_changed_options()
|
|
|
|
if result:
|
|
|
|
return True
|
|
|
|
return False
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
def update(self):
|
|
|
|
self.have = self.read_current_from_device()
|
|
|
|
if not self.should_update():
|
|
|
|
return False
|
2018-01-13 05:49:12 +00:00
|
|
|
if self.module.check_mode:
|
2017-06-28 16:26:39 +00:00
|
|
|
return True
|
|
|
|
self.update_on_device()
|
|
|
|
return True
|
|
|
|
|
|
|
|
def absent(self):
|
|
|
|
if self.exists():
|
|
|
|
return self.remove()
|
|
|
|
return False
|
|
|
|
|
|
|
|
def remove(self):
|
2018-01-13 05:49:12 +00:00
|
|
|
if self.module.check_mode:
|
2017-06-28 16:26:39 +00:00
|
|
|
return True
|
|
|
|
self.remove_from_device()
|
|
|
|
return True
|
2016-09-07 14:34:00 +00:00
|
|
|
|
2017-06-28 16:26:39 +00:00
|
|
|
def _set_changed_options(self):
|
|
|
|
changed = {}
|
2018-01-13 05:49:12 +00:00
|
|
|
for key in Parameters.returnables:
|
|
|
|
if getattr(self.want, key) is not None:
|
|
|
|
changed[key] = getattr(self.want, key)
|
|
|
|
if changed:
|
|
|
|
self.changes = UsableChanges(params=changed)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def _update_changed_options(self):
|
2018-01-13 05:49:12 +00:00
|
|
|
diff = Difference(self.want, self.have)
|
|
|
|
updatables = Parameters.updatables
|
|
|
|
changed = dict()
|
|
|
|
for k in updatables:
|
|
|
|
change = diff.compare(k)
|
|
|
|
if change is None:
|
|
|
|
continue
|
|
|
|
else:
|
|
|
|
if isinstance(change, dict):
|
|
|
|
changed.update(change)
|
|
|
|
else:
|
|
|
|
changed[k] = change
|
|
|
|
if changed:
|
|
|
|
self.changes = UsableChanges(params=changed)
|
|
|
|
return True
|
2017-06-28 16:26:39 +00:00
|
|
|
return False
|
|
|
|
|
|
|
|
def exists(self):
|
2018-11-03 03:56:33 +00:00
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/{2}".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
|
|
|
transform_name(self.want.partition, self.want.filename)
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
2018-11-03 03:56:33 +00:00
|
|
|
resp = self.client.api.get(uri)
|
|
|
|
try:
|
|
|
|
response = resp.json()
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
if resp.status == 404 or 'code' in response and response['code'] == 404:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
def upload_file_to_device(self, content, name):
|
|
|
|
url = 'https://{0}:{1}/mgmt/shared/file-transfer/uploads'.format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port']
|
|
|
|
)
|
|
|
|
try:
|
|
|
|
upload_file(self.client, url, content, name)
|
|
|
|
except F5ModuleError:
|
|
|
|
raise F5ModuleError(
|
|
|
|
"Failed to upload the file."
|
|
|
|
)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def update_on_device(self):
|
2018-01-13 05:49:12 +00:00
|
|
|
content = StringIO(self.want.content)
|
2018-11-03 03:56:33 +00:00
|
|
|
self.upload_file_to_device(content, self.want.filename)
|
|
|
|
params = self.changes.api_params()
|
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/{2}".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
|
|
|
transform_name(self.want.partition, self.want.filename)
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
2018-11-03 03:56:33 +00:00
|
|
|
resp = self.client.api.put(uri, json=params)
|
|
|
|
try:
|
|
|
|
response = resp.json()
|
|
|
|
except ValueError as ex:
|
|
|
|
raise F5ModuleError(str(ex))
|
|
|
|
|
|
|
|
if 'code' in response and response['code'] == 400:
|
|
|
|
if 'message' in response:
|
|
|
|
raise F5ModuleError(response['message'])
|
|
|
|
else:
|
|
|
|
raise F5ModuleError(resp.content)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def create_on_device(self):
|
2018-01-13 05:49:12 +00:00
|
|
|
content = StringIO(self.want.content)
|
2018-11-03 03:56:33 +00:00
|
|
|
self.upload_file_to_device(content, self.want.filename)
|
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
2018-11-03 03:56:33 +00:00
|
|
|
params = dict(
|
2018-01-13 05:49:12 +00:00
|
|
|
sourcePath=self.want.source_path,
|
|
|
|
name=self.want.filename,
|
2017-06-28 16:26:39 +00:00
|
|
|
partition=self.want.partition
|
|
|
|
)
|
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
resp = self.client.api.post(uri, json=params)
|
|
|
|
try:
|
|
|
|
response = resp.json()
|
|
|
|
except ValueError as ex:
|
|
|
|
raise F5ModuleError(str(ex))
|
|
|
|
|
|
|
|
if 'code' in response and response['code'] in [400, 403]:
|
|
|
|
if 'message' in response:
|
|
|
|
raise F5ModuleError(response['message'])
|
|
|
|
else:
|
|
|
|
raise F5ModuleError(resp.content)
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
# This needs to be done because of the way that BIG-IP creates certificates.
|
|
|
|
#
|
|
|
|
# The extra params (such as OCSP and issuer stuff) are not available in the
|
|
|
|
# payload. In a nutshell, the available resource attributes *change* after
|
|
|
|
# a create so that *more* are available.
|
|
|
|
params = self.want.api_params()
|
|
|
|
if params:
|
2018-11-03 03:56:33 +00:00
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/{2}".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
|
|
|
transform_name(self.want.partition, self.want.filename)
|
|
|
|
)
|
|
|
|
resp = self.client.api.put(uri, json=params)
|
|
|
|
try:
|
|
|
|
response = resp.json()
|
|
|
|
except ValueError as ex:
|
|
|
|
raise F5ModuleError(str(ex))
|
|
|
|
|
|
|
|
if 'code' in response and response['code'] == 400:
|
|
|
|
if 'message' in response:
|
|
|
|
raise F5ModuleError(response['message'])
|
|
|
|
else:
|
|
|
|
raise F5ModuleError(resp.content)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def read_current_from_device(self):
|
2018-11-03 03:56:33 +00:00
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/{2}".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
|
|
|
transform_name(self.want.partition, self.want.filename)
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
2018-11-03 03:56:33 +00:00
|
|
|
|
|
|
|
query = '?expandSubcollections=true'
|
|
|
|
resp = self.client.api.get(uri + query)
|
|
|
|
|
|
|
|
try:
|
|
|
|
response = resp.json()
|
|
|
|
except ValueError as ex:
|
|
|
|
raise F5ModuleError(str(ex))
|
|
|
|
|
|
|
|
if 'code' in response and response['code'] == 400:
|
|
|
|
if 'message' in response:
|
|
|
|
raise F5ModuleError(response['message'])
|
|
|
|
else:
|
|
|
|
raise F5ModuleError(resp.content)
|
|
|
|
return ApiParameters(params=response)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
def remove_from_device(self):
|
2018-11-03 03:56:33 +00:00
|
|
|
uri = "https://{0}:{1}/mgmt/tm/sys/file/ssl-cert/{2}".format(
|
|
|
|
self.client.provider['server'],
|
|
|
|
self.client.provider['server_port'],
|
|
|
|
transform_name(self.want.partition, self.want.filename)
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
2018-11-03 03:56:33 +00:00
|
|
|
response = self.client.api.delete(uri)
|
|
|
|
if response.status == 200:
|
|
|
|
return True
|
|
|
|
raise F5ModuleError(response.content)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
class ArgumentSpec(object):
|
|
|
|
def __init__(self):
|
|
|
|
self.supports_check_mode = True
|
2018-01-13 05:49:12 +00:00
|
|
|
argument_spec = dict(
|
2017-06-28 16:26:39 +00:00
|
|
|
name=dict(
|
|
|
|
required=True
|
|
|
|
),
|
2018-01-13 05:49:12 +00:00
|
|
|
content=dict(aliases=['cert_content']),
|
2017-06-28 16:26:39 +00:00
|
|
|
state=dict(
|
|
|
|
default='present',
|
|
|
|
choices=['absent', 'present']
|
2018-01-13 05:49:12 +00:00
|
|
|
),
|
|
|
|
issuer_cert=dict(),
|
|
|
|
partition=dict(
|
|
|
|
default='Common',
|
|
|
|
fallback=(env_fallback, ['F5_PARTITION'])
|
2017-06-28 16:26:39 +00:00
|
|
|
)
|
|
|
|
)
|
2018-01-13 05:49:12 +00:00
|
|
|
self.argument_spec = {}
|
|
|
|
self.argument_spec.update(f5_argument_spec)
|
|
|
|
self.argument_spec.update(argument_spec)
|
2017-06-28 16:26:39 +00:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
spec = ArgumentSpec()
|
|
|
|
|
2018-01-13 05:49:12 +00:00
|
|
|
module = AnsibleModule(
|
2017-06-28 16:26:39 +00:00
|
|
|
argument_spec=spec.argument_spec,
|
2018-01-13 05:49:12 +00:00
|
|
|
supports_check_mode=spec.supports_check_mode
|
2016-09-07 14:34:00 +00:00
|
|
|
)
|
2018-11-16 03:48:22 +00:00
|
|
|
|
2018-11-03 03:56:33 +00:00
|
|
|
client = F5RestClient(**module.params)
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
try:
|
2018-01-13 05:49:12 +00:00
|
|
|
mm = ModuleManager(module=module, client=client)
|
2017-06-28 16:26:39 +00:00
|
|
|
results = mm.exec_module()
|
2018-01-13 05:49:12 +00:00
|
|
|
cleanup_tokens(client)
|
2018-11-03 03:56:33 +00:00
|
|
|
exit_json(module, results, client)
|
2018-01-13 05:49:12 +00:00
|
|
|
except F5ModuleError as ex:
|
|
|
|
cleanup_tokens(client)
|
2018-11-03 03:56:33 +00:00
|
|
|
fail_json(module, ex, client)
|
2016-09-07 14:34:00 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|