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
|
#!/usr/bin/python
#
# Copyright (c) 2020 Fred-Sun, (@Fred-Sun)
#
# 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_registrationdefinition
version_added: '1.3.0'
short_description: Manage Azure RegistrationDefinition instance
description:
- Create, update and delete instance of Azure RegistrationDefinition.
options:
registration_definition_id:
description:
- ID of the registration definition.
- If is not specified, an UUID will be generated for it.
type: str
scope:
description:
- The subscription ID defines the subscription in which the registration definition will be created.
- If not specified, will use the subscription derived from AzureRMAuth.
type: str
properties:
description:
- Properties of a registration definition.
type: dict
suboptions:
description:
description:
- Description of the registration definition.
type: str
authorizations:
description:
- Authorization tuple containing principal ID of the user/security group or service principal and ID of the build-in role.
required: true
type: list
elements: dict
suboptions:
principal_id:
description:
- Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription.
required: true
type: str
role_definition_id:
description:
- The role definition identifier.
- This role will define all the permissions that the security group/service principal/user must have on the projected subscription.
- This role cannot be an owner role.
required: true
type: str
registration_definition_name:
description:
- Name of the registration definition.
type: str
managed_by_tenant_id:
description:
- ID of the managedBy tenant.
required: true
type: str
plan:
description:
- Plan details for the managed services.
type: dict
suboptions:
name:
description:
- The plan name.
required: true
type: str
publisher:
description:
- The publisher ID.
required: true
type: str
product:
description:
- The product code.
required: true
type: str
version:
description:
- The plan's version.
required: true
type: str
state:
description:
- Assert the state of the RegistrationDefinition.
- Use C(present) to create or update an RegistrationDefinition and C(absent) to delete it.
default: present
type: str
choices:
- absent
- present
extends_documentation_fragment:
- azure.azcollection.azure
- azure.azcollection.azure_tags
author:
- Fred-Sun (@Fred-Sun)
'''
EXAMPLES = '''
- name: Create Registration Definition without scope
azure_rm_registrationdefinition:
registration_definition_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
properties:
description: test
authorizations:
- principal_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
role_definition_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
managed_by_tenant_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
registration_definition_name: def4
- name: Create Registration Definition with scope
azure_rm_registrationdefinition:
scope: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
registration_definition_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
properties:
description: test
authorizations:
- principal_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
role_definition_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
managed_by_tenant_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
registration_definition_name: def5
- name: Delete Registration Definition
azure_rm_registrationdefinition:
registration_definition_id: xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
state: absent
'''
RETURN = '''
state:
description:
- The state info of the registration assignment.
type: complex
returned: always
contains:
properties:
description:
- Properties of a registration definition.
returned: always
type: complex
contains:
description:
description:
- Description of the registration definition.
returned: always
type: str
sample: test
authorizations:
description:
- Authorization tuple containing principal ID of the user/security group or service principal and ID of the build-in role.
returned: always
type: complex
contains:
principal_id:
description:
- Principal ID of the security group/service principal/user that would be assigned permissions to the projected subscription
returned: always
type: str
sample: 99e3227f-8701-4099-869f-bc3efc7f1e64
role_definition_id:
description:
- The role definition identifier.
- This role will define all the permissions that the security group/service principal/user must have on the subscription.
- This role cannot be an owner role.
returned: always
type: str
sample: b24988ac-6180-42a0-ab88-20f7382dd24c
registration_definition_name:
description:
- Name of the registration definition.
returned: always
type: str
sample: null
managed_by_tenant_id:
description:
- ID of the managedBy tenant.
returned: always
type: str
sample: null
plan:
description:
- Plan details for the managed services.
returned: always
type: complex
contains:
name:
description:
- The plan name.
returned: always
type: str
sample: null
publisher:
description:
- The publisher ID.
returned: always
type: str
sample: null
product:
description:
- The product code.
returned: always
type: str
sample: null
version:
description:
- The plan's version.
returned: always
type: str
sample: null
id:
description:
- Fully qualified path of the registration definition.
returned: always
type: str
sample: null
type:
description:
- Type of the resource.
returned: always
type: str
sample: Microsoft.ManagedServices/registrationDefinitions
name:
description:
- Name of the registration definition.
returned: always
type: str
sample: /subscriptions/xxx-xxx/providers/Microsoft.ManagedServices/registrationDefinitions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
'''
import uuid
from ansible_collections.azure.azcollection.plugins.module_utils.azure_rm_common_ext import AzureRMModuleBaseExt
try:
from azure.mgmt.managedservices import ManagedServicesClient
from azure.core.polling import LROPoller
except ImportError:
# This is handled in azure_rm_common
pass
class Actions:
NoAction, Create, Update, Delete = range(4)
class AzureRMRegistrationDefinition(AzureRMModuleBaseExt):
def __init__(self):
self.module_arg_spec = dict(
scope=dict(
type='str'
),
registration_definition_id=dict(
type='str',
),
properties=dict(
type='dict',
options=dict(
description=dict(
type='str',
),
authorizations=dict(
type='list',
required=True,
elements='dict',
options=dict(
principal_id=dict(
type='str',
required=True
),
role_definition_id=dict(
type='str',
required=True
)
)
),
registration_definition_name=dict(
type='str',
),
managed_by_tenant_id=dict(
type='str',
required=True
)
)
),
plan=dict(
type='dict',
options=dict(
name=dict(
type='str',
required=True
),
publisher=dict(
type='str',
required=True
),
product=dict(
type='str',
required=True
),
version=dict(
type='str',
required=True
)
)
),
state=dict(
type='str',
default='present',
choices=['present', 'absent']
)
)
self.scope = None
self.registration_definition_id = None
self.body = {}
self.results = dict(changed=False)
self.mgmt_client = None
self.state = None
self.to_do = Actions.NoAction
super(AzureRMRegistrationDefinition, self).__init__(derived_arg_spec=self.module_arg_spec,
supports_check_mode=True,
supports_tags=True)
def exec_module(self, **kwargs):
for key in list(self.module_arg_spec.keys()):
if hasattr(self, key):
setattr(self, key, kwargs[key])
elif kwargs[key] is not None:
self.body[key] = kwargs[key]
if self.registration_definition_id is None:
self.registration_definition_id = str(uuid.uuid4())
if not self.scope:
self.scope = "/subscriptions/" + self.subscription_id
else:
self.scope = "/subscriptions/" + self.scope
old_response = None
response = None
self.mgmt_client = self.get_mgmt_svc_client(ManagedServicesClient,
base_url=self._cloud_environment.endpoints.resource_manager,
api_version='2019-09-01',
suppress_subscription_id=True)
old_response = self.get_resource()
if not old_response:
if self.state == 'present':
self.to_do = Actions.Create
else:
if self.state == 'absent':
self.to_do = Actions.Delete
else:
if self.body.get('plan') is not None:
if old_response.get('plan') is not None and \
not all(self.body['plan'][item] == old_response['plan'].get(item)
for item in self.body['plan'].keys()):
self.to_do = Actions.Update
else:
self.to_do = Actions.Update
elif (self.body.get('properties') is not None and
not all(self.body['properties'][item] == old_response['properties'].get(item)
for item in self.body['properties'].keys())):
self.to_do = Actions.Update
if (self.to_do == Actions.Create) or (self.to_do == Actions.Update):
self.results['changed'] = True
if self.check_mode:
return self.results
response = self.create_update_resource()
self.results['state'] = response
elif self.to_do == Actions.Delete:
self.results['changed'] = True
if self.check_mode:
return self.results
self.delete_resource()
else:
self.results['changed'] = False
response = old_response
return self.results
def create_update_resource(self):
try:
response = self.mgmt_client.registration_definitions.begin_create_or_update(
registration_definition_id=self.registration_definition_id,
scope=self.scope,
request_body=self.body)
if isinstance(response, LROPoller):
response = self.get_poller_result(response)
except Exception as exc:
self.log('Error attempting to create the RegistrationDefinition instance.')
self.fail('Error creating the RegistrationDefinition instance: {0}'.format(str(exc)))
return response.as_dict()
def delete_resource(self):
try:
response = self.mgmt_client.registration_definitions.delete(registration_definition_id=self.registration_definition_id,
scope=self.scope)
except Exception as e:
self.log('Error attempting to delete the RegistrationDefinition instance.')
self.fail('Error deleting the RegistrationDefinition instance: {0}'.format(str(e)))
return True
def get_resource(self):
try:
response = self.mgmt_client.registration_definitions.get(scope=self.scope,
registration_definition_id=self.registration_definition_id)
except Exception as e:
return False
return response.as_dict()
def main():
AzureRMRegistrationDefinition()
if __name__ == '__main__':
main()
|