2020-03-09 13:36:01 +00:00
|
|
|
#!/usr/bin/python
|
|
|
|
|
|
|
|
# Copyright: (c) 2019, 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-03-09 13:36:01 +00:00
|
|
|
---
|
2023-11-20 12:21:23 +00:00
|
|
|
module: floating_ip_info
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
short_description: Gather infos about the Hetzner Cloud Floating IPs.
|
|
|
|
|
|
|
|
description:
|
|
|
|
- Gather facts about your Hetzner Cloud Floating IPs.
|
|
|
|
|
|
|
|
author:
|
|
|
|
- Lukas Kaemmerling (@LKaemmerling)
|
|
|
|
|
|
|
|
options:
|
|
|
|
id:
|
|
|
|
description:
|
|
|
|
- The ID of the Floating IP you want to get.
|
2023-08-16 14:14:55 +00:00
|
|
|
- The module will fail if the provided ID is invalid.
|
2020-03-09 13:36:01 +00:00
|
|
|
type: int
|
2023-08-17 09:50:19 +00:00
|
|
|
name:
|
|
|
|
description:
|
|
|
|
- The name for the Floating IP you want to get.
|
|
|
|
type: str
|
2020-03-09 13:36:01 +00:00
|
|
|
label_selector:
|
|
|
|
description:
|
|
|
|
- The label selector for the Floating IP you want to get.
|
|
|
|
type: str
|
|
|
|
extends_documentation_fragment:
|
|
|
|
- hetzner.hcloud.hcloud
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
"""
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
EXAMPLES = """
|
|
|
|
- name: Gather hcloud Floating ip infos
|
2023-11-21 08:40:11 +00:00
|
|
|
hetzner.hcloud.floating_ip_info:
|
2020-03-09 13:36:01 +00:00
|
|
|
register: output
|
|
|
|
- name: Print the gathered infos
|
|
|
|
debug:
|
|
|
|
var: output
|
|
|
|
"""
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
hcloud_floating_ip_info:
|
|
|
|
description: The Floating ip infos as list
|
|
|
|
returned: always
|
|
|
|
type: complex
|
|
|
|
contains:
|
|
|
|
id:
|
|
|
|
description: Numeric identifier of the Floating IP
|
|
|
|
returned: always
|
|
|
|
type: int
|
|
|
|
sample: 1937415
|
|
|
|
name:
|
|
|
|
description: Name of the Floating IP
|
|
|
|
returned: Always
|
|
|
|
type: str
|
|
|
|
sample: my-floating-ip
|
2020-06-29 13:41:30 +00:00
|
|
|
version_added: "0.1.0"
|
2020-03-09 13:36:01 +00:00
|
|
|
description:
|
|
|
|
description: Description of the Floating IP
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: Falkenstein DC 8
|
|
|
|
ip:
|
|
|
|
description: IP address of the Floating IP
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: 131.232.99.1
|
|
|
|
type:
|
|
|
|
description: Type of the Floating IP
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: ipv4
|
|
|
|
server:
|
|
|
|
description: Name of the server where the Floating IP is assigned to.
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: my-server
|
|
|
|
home_location:
|
|
|
|
description: Location the Floating IP was created in
|
|
|
|
returned: always
|
|
|
|
type: str
|
|
|
|
sample: fsn1
|
|
|
|
delete_protection:
|
|
|
|
description: True if the Floating IP is protected for deletion
|
|
|
|
returned: always
|
|
|
|
type: bool
|
2020-06-29 13:41:30 +00:00
|
|
|
version_added: "0.1.0"
|
2020-03-09 13:36:01 +00:00
|
|
|
labels:
|
|
|
|
description: User-defined labels (key-value pairs)
|
|
|
|
returned: always
|
|
|
|
type: dict
|
|
|
|
"""
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2023-06-27 11:17:21 +00:00
|
|
|
from ansible.module_utils.common.text.converters import to_native
|
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.floating_ips import BoundFloatingIP
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
|
2023-08-04 07:24:14 +00:00
|
|
|
class AnsibleHCloudFloatingIPInfo(AnsibleHCloud):
|
2023-09-26 07:41:01 +00:00
|
|
|
represent = "hcloud_floating_ip_info"
|
|
|
|
|
2023-11-23 13:53:10 +00:00
|
|
|
hcloud_floating_ip_info: list[BoundFloatingIP] | None = None
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
def _prepare_result(self):
|
|
|
|
tmp = []
|
|
|
|
|
|
|
|
for floating_ip in self.hcloud_floating_ip_info:
|
|
|
|
if floating_ip is not None:
|
|
|
|
server_name = None
|
|
|
|
if floating_ip.server is not None:
|
|
|
|
server_name = floating_ip.server.name
|
2023-06-27 09:50:13 +00:00
|
|
|
tmp.append(
|
|
|
|
{
|
|
|
|
"id": to_native(floating_ip.id),
|
|
|
|
"name": to_native(floating_ip.name),
|
|
|
|
"description": to_native(floating_ip.description),
|
|
|
|
"ip": to_native(floating_ip.ip),
|
|
|
|
"type": to_native(floating_ip.type),
|
|
|
|
"server": to_native(server_name),
|
|
|
|
"home_location": to_native(floating_ip.home_location.name),
|
|
|
|
"labels": floating_ip.labels,
|
|
|
|
"delete_protection": floating_ip.protection["delete"],
|
|
|
|
}
|
|
|
|
)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
return tmp
|
|
|
|
|
|
|
|
def get_floating_ips(self):
|
|
|
|
try:
|
|
|
|
if self.module.params.get("id") is not None:
|
2023-06-27 09:50:13 +00:00
|
|
|
self.hcloud_floating_ip_info = [self.client.floating_ips.get_by_id(self.module.params.get("id"))]
|
2023-08-17 09:50:19 +00:00
|
|
|
elif self.module.params.get("name") is not None:
|
|
|
|
self.hcloud_floating_ip_info = [self.client.floating_ips.get_by_name(self.module.params.get("name"))]
|
2020-03-09 13:36:01 +00:00
|
|
|
elif self.module.params.get("label_selector") is not None:
|
|
|
|
self.hcloud_floating_ip_info = self.client.floating_ips.get_all(
|
2023-06-27 09:50:13 +00:00
|
|
|
label_selector=self.module.params.get("label_selector")
|
|
|
|
)
|
2020-03-09 13:36:01 +00:00
|
|
|
else:
|
|
|
|
self.hcloud_floating_ip_info = self.client.floating_ips.get_all()
|
|
|
|
|
2023-08-25 14:19:15 +00:00
|
|
|
except HCloudException as exception:
|
|
|
|
self.fail_json_hcloud(exception)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
2023-08-02 10:05:00 +00:00
|
|
|
@classmethod
|
|
|
|
def define_module(cls):
|
2020-03-09 13:36:01 +00:00
|
|
|
return AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
id={"type": "int"},
|
2023-08-17 09:50:19 +00:00
|
|
|
name={"type": "str"},
|
2020-03-09 13:36:01 +00:00
|
|
|
label_selector={"type": "str"},
|
2023-08-02 10:05:00 +00:00
|
|
|
**super().base_module_arguments(),
|
2020-03-09 13:36:01 +00:00
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2023-08-04 07:24:14 +00:00
|
|
|
module = AnsibleHCloudFloatingIPInfo.define_module()
|
|
|
|
hcloud = AnsibleHCloudFloatingIPInfo(module)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
hcloud.get_floating_ips()
|
|
|
|
result = hcloud.get_result()
|
2023-07-05 07:32:03 +00:00
|
|
|
|
|
|
|
ansible_info = {"hcloud_floating_ip_info": result["hcloud_floating_ip_info"]}
|
|
|
|
module.exit_json(**ansible_info)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|