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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
|
#!/usr/bin/python
#
# Copyright (c) 2017 Zim Kalinowski, <zikalino@microsoft.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_mysqlserver
version_added: "0.1.2"
short_description: Manage MySQL Server instance
description:
- Create, update and delete instance of MySQL Server.
options:
resource_group:
description:
- The name of the resource group that contains the resource. You can obtain this value from the Azure Resource Manager API or the portal.
required: True
type: str
name:
description:
- The name of the server.
required: True
type: str
sku:
description:
- The SKU (pricing tier) of the server.
type: dict
suboptions:
name:
description:
- The name of the sku, typically, tier + family + cores, for example C(B_Gen4_1), C(GP_Gen5_8).
type: str
tier:
description:
- The tier of the particular SKU, for example C(Basic).
type: str
choices:
- basic
- standard
capacity:
description:
- The scale up/out capacity, representing server's compute units.
type: str
size:
description:
- The size code, to be interpreted by resource as appropriate.
type: int
location:
description:
- Resource location. If not set, location from the resource group will be used as default.
type: str
storage_profile:
description:
- Storage Profile properties of a server.
type: dict
suboptions:
storage_mb:
description:
- The maximum storage allowed for a server.
type: int
backup_retention_days:
description:
- Backup retention days for the server
type: int
geo_redundant_backup:
description:
- Enable Geo-redundant or not for server backup.
type: str
choices:
- Disabled
- Enabled
storage_autogrow:
description:
- Enable Storage Auto Grow.
type: str
choices:
- Disabled
- Enabled
version:
description:
- Server version.
type: str
choices:
- '5.7'
- '8.0'
enforce_ssl:
description:
- Enable SSL enforcement.
type: bool
default: False
admin_username:
description:
- The administrator's login name of a server.
- Can only be specified when the server is being created (and is required for creation).
type: str
admin_password:
description:
- The password of the administrator login.
type: str
create_mode:
description:
- Create mode of SQL Server.
default: Default
type: str
restarted:
description:
- Set to C(true) with I(state=present) to restart a running mysql server.
default: False
type: bool
state:
description:
- Assert the state of the MySQL Server. Use C(present) to create or update a server and C(absent) to delete it.
default: present
type: str
choices:
- absent
- present
extends_documentation_fragment:
- azure.azcollection.azure
- azure.azcollection.azure_tags
author:
- Zim Kalinowski (@zikalino)
'''
EXAMPLES = '''
- name: Create (or update) MySQL Server
azure_rm_mysqlserver:
resource_group: myResourceGroup
name: testserver
sku:
name: B_Gen5_1
tier: Basic
location: eastus
storage_profile:
storage_mb: 51200
backup_retention_days: 7
geo_redundant_backup: Disabled
storage_autogrow: Disabled
enforce_ssl: true
version: 5.7
admin_username: cloudsa
admin_password: password
'''
RETURN = '''
id:
description:
- Resource ID.
returned: always
type: str
sample: /subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourceGroups/myResourceGroup/providers/Microsoft.DBforMySQL/servers/mysqlsrv1b6dd89593
version:
description:
- Server version. Possible values include C(5.6), C(5.7), C(8.0).
returned: always
type: str
sample: 5.7
state:
description:
- A state of a server that is visible to user. Possible values include C(Ready), C(Dropping), C(Disabled).
returned: always
type: str
sample: Ready
fully_qualified_domain_name:
description:
- The fully qualified domain name of a server.
returned: always
type: str
sample: mysqlsrv1b6dd89593.mysql.database.azure.com
'''
import time
try:
from ansible_collections.azure.azcollection.plugins.module_utils.azure_rm_common import AzureRMModuleBase
from azure.core.exceptions import ResourceNotFoundError
from azure.core.polling import LROPoller
except ImportError:
# This is handled in azure_rm_common
pass
storage_profile_spec = dict(
storage_mb=dict(
type='int'
),
backup_retention_days=dict(
type='int'
),
geo_redundant_backup=dict(
type='str',
choices=['Disabled', 'Enabled']
),
storage_autogrow=dict(
type='str',
choices=['Disabled', 'Enabled']
)
)
class Actions:
NoAction, Create, Update, Delete = range(4)
class AzureRMMySqlServers(AzureRMModuleBase):
"""Configuration class for an Azure RM MySQL Server resource"""
def __init__(self):
self.module_arg_spec = dict(
resource_group=dict(
type='str',
required=True
),
name=dict(
type='str',
required=True
),
sku=dict(
type='dict'
),
location=dict(
type='str'
),
storage_profile=dict(
type='dict',
options=storage_profile_spec
),
version=dict(
type='str',
choices=['5.7', '8.0']
),
enforce_ssl=dict(
type='bool',
default=False
),
create_mode=dict(
type='str',
default='Default'
),
admin_username=dict(
type='str'
),
restarted=dict(
type='bool',
default=False
),
admin_password=dict(
type='str',
no_log=True
),
state=dict(
type='str',
default='present',
choices=['present', 'absent']
)
)
self.resource_group = None
self.name = None
self.parameters = dict()
self.tags = None
self.restarted = False
self.results = dict(changed=False)
self.state = None
self.to_do = Actions.NoAction
super(AzureRMMySqlServers, 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 == "sku":
ev = kwargs[key]
if 'tier' in ev:
if ev['tier'] == 'basic':
ev['tier'] = 'Basic'
elif ev['tier'] == 'standard':
ev['tier'] = 'Standard'
self.parameters["sku"] = ev
elif key == "location":
self.parameters["location"] = kwargs[key]
elif key == "storage_profile":
self.parameters.setdefault("properties", {})["storage_profile"] = kwargs[key]
elif key == "version":
self.parameters.setdefault("properties", {})["version"] = kwargs[key]
elif key == "enforce_ssl":
self.parameters.setdefault("properties", {})["ssl_enforcement"] = 'Enabled' if kwargs[key] else 'Disabled'
elif key == "create_mode":
self.parameters.setdefault("properties", {})["create_mode"] = kwargs[key]
elif key == "admin_username":
self.parameters.setdefault("properties", {})["administrator_login"] = kwargs[key]
elif key == "admin_password":
self.parameters.setdefault("properties", {})["administrator_login_password"] = kwargs[key]
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
old_response = self.get_mysqlserver()
if not old_response:
self.log("MySQL Server instance doesn't exist")
if self.restarted:
self.fail("Mysql server instance doesn't exist, can't be restart")
if self.state == 'absent':
self.log("Old instance didn't exist")
else:
self.to_do = Actions.Create
else:
if self.restarted:
self.restart_mysqlserver()
self.results['changed'] = True
self.results['state'] = old_response
return self.results
self.log("MySQL Server instance already exists")
if self.state == 'absent':
self.to_do = Actions.Delete
elif self.state == 'present':
self.log("Need to check if MySQL Server instance has to be deleted or may be updated")
update_tags, newtags = self.update_tags(old_response.get('tags', {}))
if update_tags:
self.tags = newtags
self.to_do = Actions.Update
if (self.to_do == Actions.Create) or (self.to_do == Actions.Update):
self.log("Need to Create / Update the MySQL Server instance")
if self.check_mode:
self.results['changed'] = True
return self.results
response = self.create_update_mysqlserver()
if not old_response:
self.results['changed'] = True
else:
self.results['changed'] = old_response.__ne__(response)
self.log("Creation / Update done")
elif self.to_do == Actions.Delete:
self.log("MySQL Server instance deleted")
self.results['changed'] = True
if self.check_mode:
return self.results
self.delete_mysqlserver()
# 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_mysqlserver():
time.sleep(20)
else:
self.log("MySQL Server instance unchanged")
self.results['changed'] = False
response = old_response
if response:
self.results["id"] = response["id"]
self.results["version"] = response["version"]
self.results["state"] = response["user_visible_state"]
self.results["fully_qualified_domain_name"] = response["fully_qualified_domain_name"]
return self.results
def restart_mysqlserver(self):
'''
Restart MySQL Server.
'''
self.log("Restart MySQL Server instance {0}".format(self.name))
try:
response = self.mysql_client.servers.begin_restart(resource_group_name=self.resource_group, server_name=self.name)
except Exception as exc:
self.fail("Error restarting mysql server {0} - {1}".format(self.name, str(exc)))
return True
def create_update_mysqlserver(self):
'''
Creates or updates MySQL Server with the specified configuration.
:return: deserialized MySQL Server instance state dictionary
'''
self.log("Creating / Updating the MySQL Server instance {0}".format(self.name))
try:
self.parameters['tags'] = self.tags
if self.to_do == Actions.Create:
response = self.mysql_client.servers.begin_create(resource_group_name=self.resource_group,
server_name=self.name,
parameters=self.parameters)
else:
# structure of parameters for update must be changed
self.parameters.update(self.parameters.pop("properties", {}))
response = self.mysql_client.servers.begin_update(resource_group_name=self.resource_group,
server_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 MySQL Server instance.')
self.fail("Error creating the MySQL Server instance: {0}".format(str(exc)))
return response.as_dict()
def delete_mysqlserver(self):
'''
Deletes specified MySQL Server instance in the specified subscription and resource group.
:return: True
'''
self.log("Deleting the MySQL Server instance {0}".format(self.name))
try:
response = self.mysql_client.servers.begin_delete(resource_group_name=self.resource_group,
server_name=self.name)
except Exception as e:
self.log('Error attempting to delete the MySQL Server instance.')
self.fail("Error deleting the MySQL Server instance: {0}".format(str(e)))
return True
def get_mysqlserver(self):
'''
Gets the properties of the specified MySQL Server.
:return: deserialized MySQL Server instance state dictionary
'''
self.log("Checking if the MySQL Server instance {0} is present".format(self.name))
found = False
try:
response = self.mysql_client.servers.get(resource_group_name=self.resource_group,
server_name=self.name)
found = True
self.log("Response : {0}".format(response))
self.log("MySQL Server instance : {0} found".format(response.name))
except ResourceNotFoundError as e:
self.log('Did not find the MySQL Server instance.')
if found is True:
return response.as_dict()
return False
def main():
"""Main execution"""
AzureRMMySqlServers()
if __name__ == '__main__':
main()
|