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-06-27 09:50:13 +00:00
|
|
|
DOCUMENTATION = """
|
2020-03-09 13:36:01 +00:00
|
|
|
---
|
|
|
|
module: hcloud_subnetwork
|
|
|
|
|
|
|
|
short_description: Manage cloud subnetworks on the Hetzner Cloud.
|
|
|
|
|
|
|
|
|
|
|
|
description:
|
|
|
|
- Create, update and delete cloud subnetworks on the Hetzner Cloud.
|
|
|
|
|
|
|
|
author:
|
|
|
|
- Lukas Kaemmerling (@lkaemmerling)
|
|
|
|
|
|
|
|
options:
|
|
|
|
network:
|
|
|
|
description:
|
|
|
|
- The ID or Name of the Hetzner Cloud Networks.
|
|
|
|
type: str
|
|
|
|
required: true
|
|
|
|
ip_range:
|
|
|
|
description:
|
|
|
|
- IP range of the subnetwork.
|
|
|
|
type: str
|
|
|
|
required: true
|
|
|
|
type:
|
|
|
|
description:
|
|
|
|
- Type of subnetwork.
|
|
|
|
type: str
|
2020-11-06 10:00:16 +00:00
|
|
|
choices: [ server, cloud, vswitch ]
|
2020-03-09 13:36:01 +00:00
|
|
|
required: true
|
|
|
|
network_zone:
|
|
|
|
description:
|
|
|
|
- Name of network zone.
|
|
|
|
type: str
|
|
|
|
required: true
|
2020-11-06 10:00:16 +00:00
|
|
|
vswitch_id:
|
|
|
|
description:
|
|
|
|
- ID of the vSwitch you want to couple with your Network.
|
|
|
|
- Required if type == vswitch
|
|
|
|
type: int
|
2020-03-09 13:36:01 +00:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- State of the subnetwork.
|
|
|
|
default: present
|
|
|
|
choices: [ absent, present ]
|
|
|
|
type: str
|
|
|
|
|
|
|
|
requirements:
|
2020-11-06 10:00:16 +00:00
|
|
|
- hcloud-python >= 1.10.0
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
extends_documentation_fragment:
|
|
|
|
- hetzner.hcloud.hcloud
|
|
|
|
|
2023-06-27 09:50:13 +00:00
|
|
|
"""
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
EXAMPLES = """
|
|
|
|
- name: Create a basic subnetwork
|
2023-07-20 10:14:57 +00:00
|
|
|
hetzner.hcloud.hcloud_subnetwork:
|
2020-03-09 13:36:01 +00:00
|
|
|
network: my-network
|
|
|
|
ip_range: 10.0.0.0/16
|
|
|
|
network_zone: eu-central
|
2020-11-06 10:00:16 +00:00
|
|
|
type: cloud
|
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Create a basic subnetwork
|
2023-07-20 10:14:57 +00:00
|
|
|
hetzner.hcloud.hcloud_subnetwork:
|
2020-11-06 10:00:16 +00:00
|
|
|
network: my-vswitch-network
|
|
|
|
ip_range: 10.0.0.0/24
|
|
|
|
network_zone: eu-central
|
|
|
|
type: vswitch
|
|
|
|
vswitch_id: 123
|
2020-03-09 13:36:01 +00:00
|
|
|
state: present
|
|
|
|
|
|
|
|
- name: Ensure the subnetwork is absent (remove if needed)
|
2023-07-20 10:14:57 +00:00
|
|
|
hetzner.hcloud.hcloud_subnetwork:
|
2020-03-09 13:36:01 +00:00
|
|
|
network: my-network
|
|
|
|
ip_range: 10.0.0.0/8
|
|
|
|
network_zone: eu-central
|
2020-11-06 10:00:16 +00:00
|
|
|
type: cloud
|
2020-03-09 13:36:01 +00:00
|
|
|
state: absent
|
|
|
|
"""
|
|
|
|
|
|
|
|
RETURN = """
|
|
|
|
hcloud_subnetwork:
|
|
|
|
description: One Subnet of a Network
|
|
|
|
returned: always
|
|
|
|
type: complex
|
|
|
|
contains:
|
|
|
|
network:
|
|
|
|
description: Name of the Network
|
|
|
|
type: str
|
|
|
|
returned: always
|
|
|
|
sample: my-network
|
|
|
|
ip_range:
|
|
|
|
description: IP range of the Network
|
|
|
|
type: str
|
|
|
|
returned: always
|
|
|
|
sample: 10.0.0.0/8
|
|
|
|
type:
|
|
|
|
description: Type of subnetwork
|
|
|
|
type: str
|
|
|
|
returned: always
|
|
|
|
sample: server
|
|
|
|
network_zone:
|
|
|
|
description: Name of network zone
|
|
|
|
type: str
|
|
|
|
returned: always
|
|
|
|
sample: eu-central
|
2020-11-06 10:00:16 +00:00
|
|
|
vswitch_id:
|
|
|
|
description: ID of the vswitch, null if not type vswitch
|
|
|
|
type: int
|
|
|
|
returned: always
|
|
|
|
sample: 123
|
2020-03-09 13:36:01 +00:00
|
|
|
gateway:
|
|
|
|
description: Gateway of the subnetwork
|
|
|
|
type: str
|
|
|
|
returned: always
|
|
|
|
sample: 10.0.0.1
|
|
|
|
"""
|
|
|
|
|
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
|
|
|
|
|
|
|
from ..module_utils.hcloud import Hcloud
|
|
|
|
from ..module_utils.vendor.hcloud import HCloudException
|
|
|
|
from ..module_utils.vendor.hcloud.networks.domain import NetworkSubnet
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
|
|
|
|
class AnsibleHcloudSubnetwork(Hcloud):
|
|
|
|
def __init__(self, module):
|
2020-11-27 11:25:06 +00:00
|
|
|
Hcloud.__init__(self, module, "hcloud_subnetwork")
|
2020-03-09 13:36:01 +00:00
|
|
|
self.hcloud_network = None
|
|
|
|
self.hcloud_subnetwork = None
|
|
|
|
|
|
|
|
def _prepare_result(self):
|
|
|
|
return {
|
|
|
|
"network": to_native(self.hcloud_network.name),
|
|
|
|
"ip_range": to_native(self.hcloud_subnetwork.ip_range),
|
|
|
|
"type": to_native(self.hcloud_subnetwork.type),
|
|
|
|
"network_zone": to_native(self.hcloud_subnetwork.network_zone),
|
|
|
|
"gateway": self.hcloud_subnetwork.gateway,
|
2020-11-06 10:00:16 +00:00
|
|
|
"vswitch_id": self.hcloud_subnetwork.vswitch_id,
|
2020-03-09 13:36:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
def _get_network(self):
|
|
|
|
try:
|
|
|
|
self.hcloud_network = self.client.networks.get_by_name(self.module.params.get("network"))
|
|
|
|
self.hcloud_subnetwork = None
|
2023-07-20 12:34:48 +00:00
|
|
|
except HCloudException as e:
|
|
|
|
self.fail_json_hcloud(e)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
def _get_subnetwork(self):
|
|
|
|
subnet_ip_range = self.module.params.get("ip_range")
|
|
|
|
for subnetwork in self.hcloud_network.subnets:
|
|
|
|
if subnetwork.ip_range == subnet_ip_range:
|
|
|
|
self.hcloud_subnetwork = subnetwork
|
|
|
|
|
|
|
|
def _create_subnetwork(self):
|
2020-11-06 10:00:16 +00:00
|
|
|
params = {
|
|
|
|
"ip_range": self.module.params.get("ip_range"),
|
2023-06-27 09:50:13 +00:00
|
|
|
"type": self.module.params.get("type"),
|
|
|
|
"network_zone": self.module.params.get("network_zone"),
|
2020-11-06 10:00:16 +00:00
|
|
|
}
|
2023-06-27 09:50:13 +00:00
|
|
|
if self.module.params.get("type") == NetworkSubnet.TYPE_VSWITCH:
|
|
|
|
self.module.fail_on_missing_params(required_params=["vswitch_id"])
|
|
|
|
params["vswitch_id"] = self.module.params.get("vswitch_id")
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
if not self.module.check_mode:
|
|
|
|
try:
|
2020-11-06 10:00:16 +00:00
|
|
|
self.hcloud_network.add_subnet(subnet=NetworkSubnet(**params)).wait_until_finished()
|
2023-07-20 12:34:48 +00:00
|
|
|
except HCloudException as e:
|
|
|
|
self.fail_json_hcloud(e)
|
2020-03-09 13:36:01 +00:00
|
|
|
|
|
|
|
self._mark_as_changed()
|
|
|
|
self._get_network()
|
|
|
|
self._get_subnetwork()
|
|
|
|
|
|
|
|
def present_subnetwork(self):
|
|
|
|
self._get_network()
|
|
|
|
self._get_subnetwork()
|
|
|
|
if self.hcloud_subnetwork is None:
|
|
|
|
self._create_subnetwork()
|
|
|
|
|
|
|
|
def delete_subnetwork(self):
|
|
|
|
self._get_network()
|
|
|
|
self._get_subnetwork()
|
|
|
|
if self.hcloud_subnetwork is not None and self.hcloud_network is not None:
|
|
|
|
if not self.module.check_mode:
|
2021-02-24 12:37:58 +00:00
|
|
|
try:
|
|
|
|
self.hcloud_network.delete_subnet(self.hcloud_subnetwork).wait_until_finished()
|
2023-07-20 12:34:48 +00:00
|
|
|
except HCloudException as e:
|
|
|
|
self.fail_json_hcloud(e)
|
2020-03-09 13:36:01 +00:00
|
|
|
self._mark_as_changed()
|
|
|
|
self.hcloud_subnetwork = None
|
|
|
|
|
|
|
|
@staticmethod
|
|
|
|
def define_module():
|
|
|
|
return AnsibleModule(
|
|
|
|
argument_spec=dict(
|
|
|
|
network={"type": "str", "required": True},
|
|
|
|
network_zone={"type": "str", "required": True},
|
2023-06-27 09:50:13 +00:00
|
|
|
type={"type": "str", "required": True, "choices": ["server", "cloud", "vswitch"]},
|
2020-03-09 13:36:01 +00:00
|
|
|
ip_range={"type": "str", "required": True},
|
2020-11-06 10:00:16 +00:00
|
|
|
vswitch_id={"type": "int"},
|
2020-03-09 13:36:01 +00:00
|
|
|
state={
|
|
|
|
"choices": ["absent", "present"],
|
|
|
|
"default": "present",
|
|
|
|
},
|
|
|
|
**Hcloud.base_module_arguments()
|
|
|
|
),
|
|
|
|
supports_check_mode=True,
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = AnsibleHcloudSubnetwork.define_module()
|
|
|
|
|
|
|
|
hcloud = AnsibleHcloudSubnetwork(module)
|
|
|
|
state = module.params["state"]
|
|
|
|
if state == "absent":
|
|
|
|
hcloud.delete_subnetwork()
|
|
|
|
elif state == "present":
|
|
|
|
hcloud.present_subnetwork()
|
|
|
|
|
|
|
|
module.exit_json(**hcloud.get_result())
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
main()
|