summaryrefslogtreecommitdiffstats
path: root/ansible_collections/azure/azcollection/plugins/modules/azure_rm_natgateway.py
blob: e53f4fddf8a439ee044262cf3a02db8c06c4ec0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#!/usr/bin/python
#
# Copyright (c) 2022 Andrea Decorte, <adecorte@redhat.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


DOCUMENTATION = """
---
module: azure_rm_natgateway
short_description: Manage Azure NAT Gateway instance
description:
    - Create, update and delete instances of Azure NAT Gateway.

options:
    resource_group:
        description:
            - The name of the resource group.
        required: True
        type: str
    name:
        description:
            - The name of the NAT Gateway.
        required: True
        type: str
    location:
        description:
            - Resource location. If not set, location from the resource group will be used as default.
        type: str
    zones:
        description:
            - List of Availability Zones in which this NAT Gateway should be located.
        type: list
        elements: int
        choices:
            - 1
            - 2
            - 3
    sku:
        description:
            - SKU of the NAT gateway resource.
        type: dict
        suboptions:
            name:
                description:
                    - Name of the NAT gateway SKU. Defaults to C(standard).
                choices:
                    - 'standard'
                default: 'standard'
                type: str
    idle_timeout_in_minutes:
        description:
            - The idle timeout in minutes which should be used. Defaults to 4.
        default: 4
        type: int
    public_ip_addresses:
        description:
            - A list of Public IP Addresses which should be associated with the NAT Gateway resource.
            - Each element can be the name or resource id, or a dict contains C(name), C(resource_group) information of the IP address.
        type: list
        elements: str
    state:
        description:
            - Assert the state of the NAT gateway. Use C(present) to create or update and C(absent) to delete.
        default: present
        type: str
        choices:
            - absent
            - present

extends_documentation_fragment:
    - azure.azcollection.azure
    - azure.azcollection.azure_tags

author:
    - Andrea Decorte (@andreadecorte)

"""

EXAMPLES = """
- name: Create instance of NAT Gateway
  azure_rm_natgateway:
    resource_group: myResourceGroup
    name: myNATGateway
    public_ip_addresses:
      - pip_name

- name: Create instance of NAT Gateway
  azure_rm_natgateway:
    resource_group: myResourceGroup
    name: myNATGateway
    idle_timeout_in_minutes: 10
    location: eastus
    zones: [1]
    sku:
      name: standard
"""

RETURN = """
id:
    description:
        - NAT gateway resource ID.
    returned: always
    type: str
    sample: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.Network/natGateways/myNATGw
name:
    description:
        - Name of NAT gateway.
    returned: always
    type: str
    sample: myNATGw
resource_group:
    description:
        - Name of resource group.
    returned: always
    type: str
    sample: myResourceGroup
location:
    description:
        - Location of NAT gateway.
    returned: always
    type: str
    sample: centralus
"""

import time
from ansible_collections.azure.azcollection.plugins.module_utils.azure_rm_common import AzureRMModuleBase, format_resource_id

try:
    from azure.core.exceptions import ResourceNotFoundError
    from azure.core.polling import LROPoller
    from azure.mgmt.core.tools import parse_resource_id, is_valid_resource_id
except ImportError:
    # This is handled in azure_rm_common
    pass


class Actions:
    NoAction, Create, Update, Delete = range(4)


sku_spec = dict(
    name=dict(type='str', choices=['standard'], default='standard')
)


class AzureRMNATGateways(AzureRMModuleBase):
    """Configuration class for an Azure RM NAT Gateway resource"""

    def __init__(self):
        self.module_arg_spec = dict(
            resource_group=dict(
                type='str',
                required=True
            ),
            name=dict(
                type='str',
                required=True
            ),
            location=dict(
                type='str'
            ),
            sku=dict(
                type='dict',
                options=sku_spec
            ),
            idle_timeout_in_minutes=dict(
                type='int',
                default=4
            ),
            zones=dict(
                type='list',
                elements='int',
                choices=[1, 2, 3]
            ),
            public_ip_addresses=dict(
                type='list',
                elements='str'
            ),
            state=dict(
                type='str',
                default='present',
                choices=['present', 'absent']
            )
        )

        self.resource_group = None
        self.name = None
        self.parameters = dict()

        self.results = dict(changed=False)
        self.state = None
        self.to_do = Actions.NoAction

        super(AzureRMNATGateways, self).__init__(derived_arg_spec=self.module_arg_spec,
                                                 supports_check_mode=True, supports_tags=True)

    def exec_module(self, **kwargs):
        """Main module execution method"""

        for key in list(self.module_arg_spec.keys()) + ['tags']:
            if hasattr(self, key):
                setattr(self, key, kwargs[key])
            elif kwargs[key] is not None:
                if key == "id":
                    self.parameters["id"] = kwargs[key]
                elif key == "location":
                    self.parameters["location"] = kwargs[key]
                elif key == "idle_timeout_in_minutes":
                    self.parameters["idle_timeout_in_minutes"] = kwargs[key]
                elif key == "zones":
                    self.parameters["zones"] = kwargs[key]
                elif key == "public_ip_addresses":
                    if "public_ip_addresses" not in self.parameters:
                        self.parameters["public_ip_addresses"] = []
                    for resource in kwargs[key]:
                        self.parameters["public_ip_addresses"].append({"id": self.return_resource_id(resource)})
                elif key == "sku":
                    ev = kwargs[key]
                    if "name" in ev:
                        if ev["name"] == "standard":
                            ev["name"] = "Standard"
                    self.parameters["sku"] = ev

        old_response = None
        response = None

        resource_group = self.get_resource_group(self.resource_group)

        if "location" not in self.parameters:
            self.parameters["location"] = resource_group.location

        # sku can be null, define a default value
        if "sku" not in self.parameters:
            self.parameters["sku"] = {"name": "Standard"}

        old_response = self.get_natgateway()

        if not old_response:
            self.log("NAT Gateway instance doesn't exist")
            if self.state == "absent":
                self.log("Old instance didn't exist")
            else:
                self.to_do = Actions.Create
        else:
            self.log("NAT Gateway instance already exists")
            if self.state == "absent":
                self.to_do = Actions.Delete
            elif self.state == "present":
                self.log("Need to check if NAT Gateway instance has to be deleted or may be updated")
                self.to_do = Actions.Update

        if (self.to_do == Actions.Update):
            if (self.parameters["location"] != old_response["location"] or
                self.check_if_changed("zones", old_response) or
                self.check_if_changed("idle_timeout_in_minutes", old_response) or
                self.check_if_changed("public_ip_addresses", old_response) or
                    self.parameters["sku"]["name"] != old_response["sku"]["name"]):
                self.to_do = Actions.Update
            else:
                self.to_do = Actions.NoAction

        if (self.to_do == Actions.Create) or (self.to_do == Actions.Update):
            self.log("Need to Create / Update the NAT Gateway instance")

            if self.check_mode:
                self.results["changed"] = True
                self.results["parameters"] = self.parameters
                return self.results

            response = self.create_update_natgateway()

            if not old_response:
                self.results["changed"] = True
            else:
                self.results["changed"] = (old_response != response)
            self.log("Creation / Update done")

        elif self.to_do == Actions.Delete:
            self.log("NAT Gateway instance deleted")
            self.results["changed"] = True

            if self.check_mode:
                return self.results

            self.delete_natgateway()
            # make sure instance is actually deleted, for some Azure resources, instance is hanging around
            # for some time after deletion -- this should be really fixed in Azure
            while self.get_natgateway():
                time.sleep(20)
        else:
            self.log("NAT Gateway instance unchanged")
            self.results["changed"] = False
            response = old_response

        if response:
            self.results.update(self.format_response(response))

        return self.results

    def create_update_natgateway(self):
        """
        Creates or updates NAT Gateway with the specified configuration.

        :return: deserialized NAT Gateway instance state dictionary
        """
        self.log("Creating / Updating the NAT Gateway instance {0}".format(self.name))

        try:
            response = self.network_client.nat_gateways.begin_create_or_update(resource_group_name=self.resource_group,
                                                                               nat_gateway_name=self.name,
                                                                               parameters=self.parameters)
            if isinstance(response, LROPoller):
                response = self.get_poller_result(response)

        except Exception as exc:
            self.log("Error attempting to create the NAT Gateway instance.")
            self.fail("Error creating the NAT Gateway instance: {0}".format(str(exc)))
        return response.as_dict()

    def delete_natgateway(self):
        """
        Deletes specified NAT Gateway instance in the specified subscription and resource group.

        :return: True
        """
        self.log("Deleting the NAT Gateway instance {0}".format(self.name))
        try:
            response = self.network_client.nat_gateways.begin_delete(resource_group_name=self.resource_group,
                                                                     nat_gateway_name=self.name)
        except Exception as e:
            self.log("Error attempting to delete the NAT Gateway instance.")
            self.fail("Error deleting the NAT Gateway instance: {0}".format(str(e)))

        return True

    def get_natgateway(self):
        """
        Gets the properties of the specified NAT Gateway.

        :return: deserialized NAT Gateway instance state dictionary
        """
        self.log("Checking if the NAT Gateway instance {0} is present".format(self.name))
        found = False
        try:
            response = self.network_client.nat_gateways.get(resource_group_name=self.resource_group,
                                                            nat_gateway_name=self.name)
            found = True
            self.log("Response : {0}".format(response))
            self.log("NAT Gateway instance : {0} found".format(response.name))
        except ResourceNotFoundError as e:
            self.log("Did not find the NAT Gateway instance.")
        if found is True:
            return response.as_dict()

        return False

    def check_if_changed(self, parameter_name, old_response):
        """"
        Compute if there is an update to the resource or not

        :return: True if resource is changed compared to the current one
        """
        if parameter_name in self.parameters and (parameter_name not in old_response or self.parameters[parameter_name] != old_response[parameter_name]):
            # Parameter changed
            return True
        elif parameter_name not in self.parameters and parameter_name in old_response:
            # Parameter omitted while it was specified before
            return True
        else:
            return False

    def format_response(self, natgw_dict):
        """
        Build format of the response

        :return dictionary filled with resource data
        """
        id = natgw_dict.get("id")
        id_dict = parse_resource_id(id)
        d = {
            "id": id,
            "name": natgw_dict.get("name"),
            "resource_group": id_dict.get("resource_group", self.resource_group),
            "location": natgw_dict.get("location")
        }
        return d

    def return_resource_id(self, resource):
        """
        Build an IP Address resource id from different inputs

        :return string containing the Azure id of the resource
        """
        if is_valid_resource_id(resource):
            return resource
        resource_dict = self.parse_resource_to_dict(resource)
        return format_resource_id(val=resource_dict["name"],
                                  subscription_id=resource_dict.get("subscription_id"),
                                  namespace="Microsoft.Network",
                                  types="publicIPAddresses",
                                  resource_group=resource_dict.get("resource_group"))


def main():
    """Main execution"""
    AzureRMNATGateways()


if __name__ == "__main__":
    main()