380 lines
14 KiB
Python
380 lines
14 KiB
Python
#!/usr/bin/python
|
|
#
|
|
# Copyright (c) 2019 Zim Kalinowski, (@zikalino)
|
|
#
|
|
# 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
|
|
|
|
|
|
ANSIBLE_METADATA = {'metadata_version': '1.1',
|
|
'status': ['preview'],
|
|
'supported_by': 'community'}
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
---
|
|
module: azure_rm_devtestlabenvironment
|
|
version_added: "2.8"
|
|
short_description: Manage Azure DevTest Lab Environment instance.
|
|
description:
|
|
- Create, update and delete instance of Azure DevTest Lab Environment.
|
|
|
|
options:
|
|
resource_group:
|
|
description:
|
|
- The name of the resource group.
|
|
required: True
|
|
lab_name:
|
|
description:
|
|
- The name of the lab.
|
|
required: True
|
|
user_name:
|
|
description:
|
|
- The name of the user profile.
|
|
required: True
|
|
name:
|
|
description:
|
|
- The name of the environment.
|
|
required: True
|
|
location:
|
|
description:
|
|
- The location of the resource.
|
|
deployment_template:
|
|
description:
|
|
- "The Azure Resource Manager template's identifier."
|
|
deployment_parameters:
|
|
description:
|
|
- The parameters of the Azure Resource Manager template.
|
|
type: list
|
|
suboptions:
|
|
name:
|
|
description:
|
|
- The name of the template parameter.
|
|
value:
|
|
description:
|
|
- The value of the template parameter.
|
|
state:
|
|
description:
|
|
- Assert the state of the Environment.
|
|
- Use 'present' to create or update an Environment and 'absent' to delete it.
|
|
default: present
|
|
choices:
|
|
- absent
|
|
- present
|
|
|
|
extends_documentation_fragment:
|
|
- azure
|
|
- azure_tags
|
|
|
|
author:
|
|
- "Zim Kalinowski (@zikalino)"
|
|
|
|
'''
|
|
|
|
EXAMPLES = '''
|
|
- name: Create instance of DevTest Lab Environment from public environment repo
|
|
azure_rm_devtestlabenvironment:
|
|
resource_group: myResourceGroup
|
|
lab_name: myLab
|
|
user_name: user
|
|
name: myEnvironment
|
|
location: eastus
|
|
deployment_template:
|
|
artifact_source_name: public environment repo
|
|
name: WebApp
|
|
'''
|
|
|
|
RETURN = '''
|
|
id:
|
|
description:
|
|
- The identifier of the resource.
|
|
returned: always
|
|
type: str
|
|
sample: "/subscriptions/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx/resourcegroups/myResourceGroup/providers/microsoft.devtestlab/labs/myLab/environment
|
|
s/myEnvironment"
|
|
|
|
'''
|
|
|
|
import time
|
|
from ansible.module_utils.azure_rm_common import AzureRMModuleBase
|
|
from ansible.module_utils.common.dict_transformations import _snake_to_camel
|
|
|
|
try:
|
|
from msrestazure.azure_exceptions import CloudError
|
|
from msrest.polling import LROPoller
|
|
from msrestazure.azure_operation import AzureOperationPoller
|
|
from azure.mgmt.devtestlabs import DevTestLabsClient
|
|
from msrest.serialization import Model
|
|
except ImportError:
|
|
# This is handled in azure_rm_common
|
|
pass
|
|
|
|
|
|
class Actions:
|
|
NoAction, Create, Update, Delete = range(4)
|
|
|
|
|
|
class AzureRMDtlEnvironment(AzureRMModuleBase):
|
|
"""Configuration class for an Azure RM Environment resource"""
|
|
|
|
def __init__(self):
|
|
self.module_arg_spec = dict(
|
|
resource_group=dict(
|
|
type='str',
|
|
required=True
|
|
),
|
|
lab_name=dict(
|
|
type='str',
|
|
required=True
|
|
),
|
|
user_name=dict(
|
|
type='str',
|
|
required=True
|
|
),
|
|
name=dict(
|
|
type='str',
|
|
required=True
|
|
),
|
|
location=dict(
|
|
type='str'
|
|
),
|
|
deployment_template=dict(
|
|
type='raw'
|
|
),
|
|
deployment_parameters=dict(
|
|
type='list',
|
|
options=dict(
|
|
name=dict(
|
|
type='str'
|
|
),
|
|
value=dict(
|
|
type='str'
|
|
)
|
|
)
|
|
),
|
|
state=dict(
|
|
type='str',
|
|
default='present',
|
|
choices=['present', 'absent']
|
|
)
|
|
)
|
|
|
|
self.resource_group = None
|
|
self.lab_name = None
|
|
self.user_name = None
|
|
self.name = None
|
|
self.dtl_environment = dict()
|
|
|
|
self.results = dict(changed=False)
|
|
self.mgmt_client = None
|
|
self.state = None
|
|
self.to_do = Actions.NoAction
|
|
|
|
super(AzureRMDtlEnvironment, 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:
|
|
self.dtl_environment[key] = kwargs[key]
|
|
|
|
response = None
|
|
|
|
self.mgmt_client = self.get_mgmt_svc_client(DevTestLabsClient,
|
|
base_url=self._cloud_environment.endpoints.resource_manager)
|
|
|
|
resource_group = self.get_resource_group(self.resource_group)
|
|
deployment_template = self.dtl_environment.pop('deployment_template', None)
|
|
if deployment_template:
|
|
if isinstance(deployment_template, dict):
|
|
if all(key in deployment_template for key in ('artifact_source_name', 'name')):
|
|
tmp = '/subscriptions/{0}/resourcegroups/{1}/providers/microsoft.devtestlab/labs/{2}/artifactSources/{3}/armTemplates/{4}'
|
|
deployment_template = tmp.format(self.subscription_id,
|
|
self.resource_group,
|
|
self.lab_name,
|
|
deployment_template['artifact_source_name'],
|
|
deployment_template['name'])
|
|
if not isinstance(deployment_template, str):
|
|
self.fail("parameter error: expecting deployment_template to contain [artifact_source, name]")
|
|
self.dtl_environment['deployment_properties'] = {}
|
|
self.dtl_environment['deployment_properties']['arm_template_id'] = deployment_template
|
|
self.dtl_environment['deployment_properties']['parameters'] = self.dtl_environment.pop('deployment_parameters', None)
|
|
|
|
old_response = self.get_environment()
|
|
|
|
if not old_response:
|
|
self.log("Environment instance doesn't exist")
|
|
if self.state == 'absent':
|
|
self.log("Old instance didn't exist")
|
|
else:
|
|
self.to_do = Actions.Create
|
|
else:
|
|
self.log("Environment instance already exists")
|
|
if self.state == 'absent':
|
|
self.to_do = Actions.Delete
|
|
elif self.state == 'present':
|
|
if (not default_compare(self.dtl_environment, old_response, '', self.results)):
|
|
self.to_do = Actions.Update
|
|
|
|
if (self.to_do == Actions.Create) or (self.to_do == Actions.Update):
|
|
self.log("Need to Create / Update the Environment instance")
|
|
|
|
if self.check_mode:
|
|
self.results['changed'] = True
|
|
return self.results
|
|
|
|
response = self.create_update_environment()
|
|
|
|
self.results['changed'] = True
|
|
self.log("Creation / Update done")
|
|
elif self.to_do == Actions.Delete:
|
|
self.log("Environment instance deleted")
|
|
self.results['changed'] = True
|
|
|
|
if self.check_mode:
|
|
return self.results
|
|
|
|
self.delete_environment()
|
|
# This currently doesnt' work as there is a bug in SDK / Service
|
|
if isinstance(response, LROPoller) or isinstance(response, AzureOperationPoller):
|
|
response = self.get_poller_result(response)
|
|
else:
|
|
self.log("Environment instance unchanged")
|
|
self.results['changed'] = False
|
|
response = old_response
|
|
|
|
if self.state == 'present':
|
|
self.results.update({
|
|
'id': response.get('id', None)
|
|
})
|
|
return self.results
|
|
|
|
def create_update_environment(self):
|
|
'''
|
|
Creates or updates Environment with the specified configuration.
|
|
|
|
:return: deserialized Environment instance state dictionary
|
|
'''
|
|
self.log("Creating / Updating the Environment instance {0}".format(self.name))
|
|
|
|
try:
|
|
if self.to_do == Actions.Create:
|
|
response = self.mgmt_client.environments.create_or_update(resource_group_name=self.resource_group,
|
|
lab_name=self.lab_name,
|
|
user_name=self.user_name,
|
|
name=self.name,
|
|
dtl_environment=self.dtl_environment)
|
|
else:
|
|
response = self.mgmt_client.environments.update(resource_group_name=self.resource_group,
|
|
lab_name=self.lab_name,
|
|
user_name=self.user_name,
|
|
name=self.name,
|
|
dtl_environment=self.dtl_environment)
|
|
if isinstance(response, LROPoller) or isinstance(response, AzureOperationPoller):
|
|
response = self.get_poller_result(response)
|
|
|
|
except CloudError as exc:
|
|
self.log('Error attempting to create the Environment instance.')
|
|
self.fail("Error creating the Environment instance: {0}".format(str(exc)))
|
|
return response.as_dict()
|
|
|
|
def delete_environment(self):
|
|
'''
|
|
Deletes specified Environment instance in the specified subscription and resource group.
|
|
|
|
:return: True
|
|
'''
|
|
self.log("Deleting the Environment instance {0}".format(self.name))
|
|
try:
|
|
response = self.mgmt_client.environments.delete(resource_group_name=self.resource_group,
|
|
lab_name=self.lab_name,
|
|
user_name=self.user_name,
|
|
name=self.name)
|
|
except CloudError as e:
|
|
self.log('Error attempting to delete the Environment instance.')
|
|
self.fail("Error deleting the Environment instance: {0}".format(str(e)))
|
|
|
|
return True
|
|
|
|
def get_environment(self):
|
|
'''
|
|
Gets the properties of the specified Environment.
|
|
|
|
:return: deserialized Environment instance state dictionary
|
|
'''
|
|
self.log("Checking if the Environment instance {0} is present".format(self.name))
|
|
found = False
|
|
try:
|
|
response = self.mgmt_client.environments.get(resource_group_name=self.resource_group,
|
|
lab_name=self.lab_name,
|
|
user_name=self.user_name,
|
|
name=self.name)
|
|
found = True
|
|
self.log("Response : {0}".format(response))
|
|
self.log("Environment instance : {0} found".format(response.name))
|
|
except CloudError as e:
|
|
self.log('Did not find the Environment instance.')
|
|
if found is True:
|
|
return response.as_dict()
|
|
|
|
return False
|
|
|
|
|
|
def default_compare(new, old, path, result):
|
|
if new is None:
|
|
return True
|
|
elif isinstance(new, dict):
|
|
if not isinstance(old, dict):
|
|
result['compare'] = 'changed [' + path + '] old dict is null'
|
|
return False
|
|
for k in new.keys():
|
|
if not default_compare(new.get(k), old.get(k, None), path + '/' + k, result):
|
|
return False
|
|
return True
|
|
elif isinstance(new, list):
|
|
if not isinstance(old, list) or len(new) != len(old):
|
|
result['compare'] = 'changed [' + path + '] length is different or null'
|
|
return False
|
|
if isinstance(old[0], dict):
|
|
key = None
|
|
if 'id' in old[0] and 'id' in new[0]:
|
|
key = 'id'
|
|
elif 'name' in old[0] and 'name' in new[0]:
|
|
key = 'name'
|
|
else:
|
|
key = list(old[0])[0]
|
|
new = sorted(new, key=lambda x: x.get(key, None))
|
|
old = sorted(old, key=lambda x: x.get(key, None))
|
|
else:
|
|
new = sorted(new)
|
|
old = sorted(old)
|
|
for i in range(len(new)):
|
|
if not default_compare(new[i], old[i], path + '/*', result):
|
|
return False
|
|
return True
|
|
else:
|
|
if path == '/location':
|
|
new = new.replace(' ', '').lower()
|
|
old = new.replace(' ', '').lower()
|
|
if new == old:
|
|
return True
|
|
else:
|
|
result['compare'] = 'changed [' + path + '] ' + str(new) + ' != ' + str(old)
|
|
return False
|
|
|
|
|
|
def main():
|
|
"""Main execution"""
|
|
AzureRMDtlEnvironment()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|