2020-06-29 13:41:30 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# Copyright: (c) 2020, Hetzner Cloud GmbH <info@hetzner-cloud.de>
|
|
|
|
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
|
|
|
|
|
2023-11-23 13:53:10 +00:00
|
|
|
from __future__ import annotations
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
DOCUMENTATION = """
|
2020-06-29 13:41:30 +00:00
|
|
|
---
|
2023-11-20 12:21:23 +00:00
|
|
|
module: certificate_info
|
2020-06-29 13:41:30 +00:00
|
|
|
short_description: Gather infos about your Hetzner Cloud certificates.
|
|
|
|
description:
|
|
|
|
- Gather facts about your Hetzner Cloud certificates.
|
|
|
|
author:
|
|
|
|
- Lukas Kaemmerling (@LKaemmerling)
|
|
|
|
options:
|
|
|
|
id:
|
|
|
|
description:
|
|
|
|
- The ID of the certificate you want to get.
|
2023-08-16 14:14:55 +00:00
|
|
|
- The module will fail if the provided ID is invalid.
|
2020-06-29 13:41:30 +00:00
|
|
|
type: int
|
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name of the certificate you want to get.
|
|
|
|
type: str
|
|
|
|
label_selector:
|
|
|
|
description:
|
|
|
|
- The label selector for the certificate you want to get.
|
|
|
|
type: str
|
|
|
|
extends_documentation_fragment:
|
|
|
|
- hetzner.hcloud.hcloud
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
"""
|
2020-06-29 13:41:30 +00:00
|
|
|
|
|
|
|
EXAMPLES = """
|
|
|
|
- name: Gather hcloud certificate infos
|
2023-11-21 08:40:11 +00:00
|
|
|
hetzner.hcloud.certificate_info:
|
2020-06-29 13:41:30 +00:00
|
|
|
register: output
|
|
|
|
- name: Print the gathered infos
|
|
|
|
debug:
|
|
|
|
var: output.hcloud_certificate_info
|
|
|
|
"""
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
hcloud_certificate_info:
|
|
|
|
description: The certificate instances
|
|
|
|
returned: Always
|
|
|
|
type: complex
|
|
|
|
contains:
|
|
|
|
id:
|
|
|
|
description: Numeric identifier of the certificate
|
|
|
|
returned: always
|
|
|
|
type: int
|
|
|
|
sample: 1937415
|
|
|
|
name:
|
|
|
|
description: Name of the certificate
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: my website cert
|
|
|
|
fingerprint:
|
|
|
|
description: Fingerprint of the certificate
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: "03:c7:55:9b:2a:d1:04:17:09:f6:d0:7f:18:34:63:d4:3e:5f"
|
|
|
|
certificate:
|
|
|
|
description: Certificate and chain in PEM format
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: "-----BEGIN CERTIFICATE-----..."
|
|
|
|
domain_names:
|
|
|
|
description: List of Domains and Subdomains covered by the Certificate
|
|
|
|
returned: always
|
|
|
|
type: dict
|
|
|
|
not_valid_before:
|
|
|
|
description: Point in time when the Certificate becomes valid (in ISO-8601 format)
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
not_valid_after:
|
|
|
|
description: Point in time when the Certificate stops being valid (in ISO-8601 format)
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
labels:
|
|
|
|
description: User-defined labels (key-value pairs)
|
|
|
|
returned: always
|
|
|
|
type: dict
|
|
|
|
"""
|
2023-09-26 07:41:01 +00:00
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2023-07-31 08:12:55 +00:00
|
|
|
|
2023-08-04 07:24:14 +00:00
|
|
|
from ..module_utils.hcloud import AnsibleHCloud
|
2023-07-31 08:12:55 +00:00
|
|
|
from ..module_utils.vendor.hcloud import HCloudException
|
2023-09-26 07:41:01 +00:00
|
|
|
from ..module_utils.vendor.hcloud.certificates import BoundCertificate
|
2020-06-29 13:41:30 +00:00
|
|
|
|
|
|
|
|
2023-08-04 07:24:14 +00:00
|
|
|
class AnsibleHCloudCertificateInfo(AnsibleHCloud):
|
2023-09-26 07:41:01 +00:00
|
|
|
represent = "hcloud_certificate_info"
|
|
|
|
|
2023-11-23 13:53:10 +00:00
|
|
|
hcloud_certificate_info: list[BoundCertificate] | None = None
|
2020-06-29 13:41:30 +00:00
|
|
|
|
|
|
|
def _prepare_result(self):
|
2024-03-27 13:11:30 +00:00
|
|
|
tmp = []
|
2020-06-29 13:41:30 +00:00
|
|
|
|
|
|
|
for certificate in self.hcloud_certificate_info:
|
2024-03-27 13:11:30 +00:00
|
|
|
if certificate is None:
|
|
|
|
continue
|
|
|
|
|
|
|
|
tmp.append(
|
|
|
|
{
|
|
|
|
"id": str(certificate.id),
|
|
|
|
"name": certificate.name,
|
|
|
|
"fingerprint": certificate.fingerprint,
|
|
|
|
"certificate": certificate.certificate,
|
|
|
|
"not_valid_before": certificate.not_valid_before.isoformat(),
|
|
|
|
"not_valid_after": certificate.not_valid_after.isoformat(),
|
|
|
|
"domain_names": certificate.domain_names,
|
|
|
|
"labels": certificate.labels,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
return tmp
|
2020-06-29 13:41:30 +00:00
|
|
|
|
|
|
|
def get_certificates(self):
|
|
|
|
try:
|
|
|
|
if self.module.params.get("id") is not None:
|
2023-06-27 09:50:13 +00:00
|
|
|
self.hcloud_certificate_info = [self.client.certificates.get_by_id(self.module.params.get("id"))]
|
2020-06-29 13:41:30 +00:00
|
|
|
elif self.module.params.get("name") is not None:
|
2023-06-27 09:50:13 +00:00
|
|
|
self.hcloud_certificate_info = [self.client.certificates.get_by_name(self.module.params.get("name"))]
|
2020-06-29 13:41:30 +00:00
|
|
|
elif self.module.params.get("label_selector") is not None:
|
|
|
|
self.hcloud_certificate_info = self.client.certificates.get_all(
|
2023-06-27 09:50:13 +00:00
|
|
|
label_selector=self.module.params.get("label_selector")
|
|
|
|
)
|
2020-06-29 13:41:30 +00:00
|
|
|
else:
|
|
|
|
self.hcloud_certificate_info = self.client.certificates.get_all()
|
|
|
|
|
2023-08-25 14:19:15 +00:00
|
|
|
except HCloudException as exception:
|
|
|
|
self.fail_json_hcloud(exception)
|
2020-06-29 13:41:30 +00:00
|
|
|
|
2023-08-02 10:05:00 +00:00
|
|
|
@classmethod
|
|
|
|
def define_module(cls):
|
2020-06-29 13:41:30 +00:00
|
|
|
return AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
id={"type": "int"},
|
|
|
|
name={"type": "str"},
|
|
|
|
label_selector={"type": "str"},
|
2023-11-23 13:53:10 +00:00
|
|
|
**super().base_module_arguments(),
|
2020-06-29 13:41:30 +00:00
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2023-08-04 07:24:14 +00:00
|
|
|
module = AnsibleHCloudCertificateInfo.define_module()
|
|
|
|
hcloud = AnsibleHCloudCertificateInfo(module)
|
2023-07-05 07:32:03 +00:00
|
|
|
|
2020-06-29 13:41:30 +00:00
|
|
|
hcloud.get_certificates()
|
|
|
|
result = hcloud.get_result()
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
ansible_info = {"hcloud_certificate_info": result["hcloud_certificate_info"]}
|
2020-06-29 13:41:30 +00:00
|
|
|
module.exit_json(**ansible_info)
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|