mirror of
https://github.com/ansible/awx.git
synced 2026-03-04 02:01:01 -03:30
Merge pull request #4265 from john-westcott-iv/release_3.7.0
Restructuring modules so that lookup don't happen if deleting
This commit is contained in:
@@ -364,18 +364,16 @@ def main():
|
|||||||
# End backwards compatability
|
# End backwards compatability
|
||||||
state = module.params.get('state')
|
state = module.params.get('state')
|
||||||
|
|
||||||
# Attempt to look up the related items the user specified (these will fail the module if not found)
|
# Deprication warnings
|
||||||
if organization:
|
for legacy_input in OLD_INPUT_NAMES:
|
||||||
org_id = module.resolve_name_to_id('organizations', organization)
|
if module.params.get(legacy_input) is not None:
|
||||||
if user:
|
module.deprecate(msg='{0} parameter has been deprecated, please use inputs instead'.format(legacy_input), version="3.6")
|
||||||
user_id = module.resolve_name_to_id('users', user)
|
|
||||||
if team:
|
|
||||||
team_id = module.resolve_name_to_id('teams', team)
|
|
||||||
|
|
||||||
if kind:
|
if kind:
|
||||||
module.deprecate(msg='The kind parameter has been deprecated, please use credential_type instead', version="3.6")
|
module.deprecate(msg='The kind parameter has been deprecated, please use credential_type instead', version="3.6")
|
||||||
|
|
||||||
cred_type_id = module.resolve_name_to_id('credential_types', credential_type if credential_type else KIND_CHOICES[kind])
|
cred_type_id = module.resolve_name_to_id('credential_types', credential_type if credential_type else KIND_CHOICES[kind])
|
||||||
|
if organization:
|
||||||
|
org_id = module.resolve_name_to_id('organizations', organization)
|
||||||
|
|
||||||
# Attempt to look up the object based on the provided name, credential type and optional organization
|
# Attempt to look up the object based on the provided name, credential type and optional organization
|
||||||
lookup_data = {
|
lookup_data = {
|
||||||
@@ -384,13 +382,23 @@ def main():
|
|||||||
}
|
}
|
||||||
if organization:
|
if organization:
|
||||||
lookup_data['organization'] = org_id
|
lookup_data['organization'] = org_id
|
||||||
|
|
||||||
credential = module.get_one('credentials', **{'data': lookup_data})
|
credential = module.get_one('credentials', **{'data': lookup_data})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(credential)
|
||||||
|
|
||||||
|
# Attempt to look up the related items the user specified (these will fail the module if not found)
|
||||||
|
if user:
|
||||||
|
user_id = module.resolve_name_to_id('users', user)
|
||||||
|
if team:
|
||||||
|
team_id = module.resolve_name_to_id('teams', team)
|
||||||
|
|
||||||
# Create credential input from legacy inputs
|
# Create credential input from legacy inputs
|
||||||
credential_inputs = {}
|
credential_inputs = {}
|
||||||
for legacy_input in OLD_INPUT_NAMES:
|
for legacy_input in OLD_INPUT_NAMES:
|
||||||
if module.params.get(legacy_input) is not None:
|
if module.params.get(legacy_input) is not None:
|
||||||
module.deprecate(msg='{0} parameter has been deprecated, please use inputs instead'.format(legacy_input), version="3.6")
|
|
||||||
credential_inputs[legacy_input] = module.params.get(legacy_input)
|
credential_inputs[legacy_input] = module.params.get(legacy_input)
|
||||||
if inputs:
|
if inputs:
|
||||||
credential_inputs.update(inputs)
|
credential_inputs.update(inputs)
|
||||||
@@ -415,14 +423,10 @@ def main():
|
|||||||
if team:
|
if team:
|
||||||
credential_fields['team'] = team_id
|
credential_fields['team'] = team_id
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present we can let the module build or update the existing group, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(credential)
|
credential, credential_fields, endpoint='credentials', item_type='credential'
|
||||||
elif state == 'present':
|
)
|
||||||
# If the state was present we can let the module build or update the existing group, this will return on its own
|
|
||||||
module.create_or_update_if_needed(
|
|
||||||
credential, credential_fields, endpoint='credentials', item_type='credential'
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -144,9 +144,9 @@ def main():
|
|||||||
if state == 'absent':
|
if state == 'absent':
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
module.delete_if_needed(credential_type)
|
module.delete_if_needed(credential_type)
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing credential type, this will return on its own
|
# If the state was present and we can let the module build or update the existing credential type, this will return on its own
|
||||||
module.create_or_update_if_needed(credential_type, credential_type_params, endpoint='credential_types', item_type='credential type')
|
module.create_or_update_if_needed(credential_type, credential_type_params, endpoint='credential_types', item_type='credential type')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -123,6 +123,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(group)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
group_fields = {
|
group_fields = {
|
||||||
'name': new_name if new_name else name,
|
'name': new_name if new_name else name,
|
||||||
@@ -149,15 +153,11 @@ def main():
|
|||||||
if id_list:
|
if id_list:
|
||||||
association_fields[relationship] = id_list
|
association_fields[relationship] = id_list
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present we can let the module build or update the existing group, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(group)
|
group, group_fields, endpoint='groups', item_type='group',
|
||||||
elif state == 'present':
|
associations=association_fields
|
||||||
# If the state was present we can let the module build or update the existing group, this will return on its own
|
)
|
||||||
module.create_or_update_if_needed(
|
|
||||||
group, group_fields, endpoint='groups', item_type='group',
|
|
||||||
associations=association_fields
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -119,6 +119,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(host)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
host_fields = {
|
host_fields = {
|
||||||
'name': new_name if new_name else name,
|
'name': new_name if new_name else name,
|
||||||
@@ -130,12 +134,8 @@ def main():
|
|||||||
if variables is not None:
|
if variables is not None:
|
||||||
host_fields['variables'] = json.dumps(variables)
|
host_fields['variables'] = json.dumps(variables)
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing host, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(host, host_fields, endpoint='hosts', item_type='host')
|
||||||
module.delete_if_needed(host)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing host, this will return on its own
|
|
||||||
module.create_or_update_if_needed(host, host_fields, endpoint='hosts', item_type='host')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -119,6 +119,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(inventory)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
inventory_fields = {
|
inventory_fields = {
|
||||||
'name': name,
|
'name': name,
|
||||||
@@ -131,16 +135,12 @@ def main():
|
|||||||
if variables is not None:
|
if variables is not None:
|
||||||
inventory_fields['variables'] = json.dumps(variables)
|
inventory_fields['variables'] = json.dumps(variables)
|
||||||
|
|
||||||
if state == 'absent':
|
# We need to perform a check to make sure you are not trying to convert a regular inventory into a smart one.
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
if inventory and inventory['kind'] == '' and inventory_fields['kind'] == 'smart':
|
||||||
module.delete_if_needed(inventory)
|
module.fail_json(msg='You cannot turn a regular inventory into a "smart" inventory.')
|
||||||
elif state == 'present':
|
|
||||||
# We need to perform a check to make sure you are not trying to convert a regular inventory into a smart one.
|
|
||||||
if inventory and inventory['kind'] == '' and inventory_fields['kind'] == 'smart':
|
|
||||||
module.fail_json(msg='You cannot turn a regular inventory into a "smart" inventory.')
|
|
||||||
|
|
||||||
# If the state was present and we can let the module build or update the existing inventory, this will return on its own
|
# If the state was present and we can let the module build or update the existing inventory, this will return on its own
|
||||||
module.create_or_update_if_needed(inventory, inventory_fields, endpoint='inventories', item_type='inventory')
|
module.create_or_update_if_needed(inventory, inventory_fields, endpoint='inventories', item_type='inventory')
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -198,6 +198,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(inventory_source)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
inventory_source_fields = {
|
inventory_source_fields = {
|
||||||
'name': new_name if new_name else name,
|
'name': new_name if new_name else name,
|
||||||
@@ -234,12 +238,8 @@ def main():
|
|||||||
if state == 'present' and not inventory_source and not inventory_source_fields['source']:
|
if state == 'present' and not inventory_source and not inventory_source_fields['source']:
|
||||||
module.fail_json(msg="If creating a new inventory source, the source param must be present")
|
module.fail_json(msg="If creating a new inventory source, the source param must be present")
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present we can let the module build or update the existing inventory_source, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(inventory_source, inventory_source_fields, endpoint='inventory_sources', item_type='inventory source')
|
||||||
module.delete_if_needed(inventory_source)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present we can let the module build or update the existing inventory_source, this will return on its own
|
|
||||||
module.create_or_update_if_needed(inventory_source, inventory_source_fields, endpoint='inventory_sources', item_type='inventory source')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -414,6 +414,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
new_fields = {}
|
new_fields = {}
|
||||||
new_fields['name'] = new_name if new_name else name
|
new_fields['name'] = new_name if new_name else name
|
||||||
@@ -490,23 +494,19 @@ def main():
|
|||||||
module._encrypted_changed_warning('survey_spec', existing_item, warning=True)
|
module._encrypted_changed_warning('survey_spec', existing_item, warning=True)
|
||||||
on_change = update_survey
|
on_change = update_survey
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(existing_item)
|
existing_item, new_fields,
|
||||||
elif state == 'present':
|
endpoint='job_templates', item_type='job_template',
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
associations={
|
||||||
module.create_or_update_if_needed(
|
'credentials': credentials_ids,
|
||||||
existing_item, new_fields,
|
'labels': labels_ids,
|
||||||
endpoint='job_templates', item_type='job_template',
|
'notification_templates_success': notification_success_ids,
|
||||||
associations={
|
'notification_templates_started': notification_start_ids,
|
||||||
'credentials': credentials_ids,
|
'notification_templates_error': notification_error_ids
|
||||||
'labels': labels_ids,
|
},
|
||||||
'notification_templates_success': notification_success_ids,
|
on_create=on_change, on_update=on_change,
|
||||||
'notification_templates_started': notification_start_ids,
|
)
|
||||||
'notification_templates_error': notification_error_ids
|
|
||||||
},
|
|
||||||
on_create=on_change, on_update=on_change,
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -403,6 +403,11 @@ def main():
|
|||||||
messages = module.params.get('messages')
|
messages = module.params.get('messages')
|
||||||
state = module.params.get('state')
|
state = module.params.get('state')
|
||||||
|
|
||||||
|
# Deprecation warnings
|
||||||
|
for legacy_input in OLD_INPUT_NAMES:
|
||||||
|
if module.params.get(legacy_input) is not None:
|
||||||
|
module.deprecate(msg='{0} parameter has been deprecated, please use notification_configuration instead.'.format(legacy_input), version="3.6")
|
||||||
|
|
||||||
# Attempt to look up the related items the user specified (these will fail the module if not found)
|
# Attempt to look up the related items the user specified (these will fail the module if not found)
|
||||||
organization_id = None
|
organization_id = None
|
||||||
if organization:
|
if organization:
|
||||||
@@ -416,11 +421,14 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
# Create notification_configuration from legacy inputs
|
# Create notification_configuration from legacy inputs
|
||||||
final_notification_configuration = {}
|
final_notification_configuration = {}
|
||||||
for legacy_input in OLD_INPUT_NAMES:
|
for legacy_input in OLD_INPUT_NAMES:
|
||||||
if module.params.get(legacy_input) is not None:
|
if module.params.get(legacy_input) is not None:
|
||||||
module.deprecate(msg='{0} parameter has been deprecated, please use notification_configuration instead.'.format(legacy_input), version="3.6")
|
|
||||||
final_notification_configuration[legacy_input] = module.params.get(legacy_input)
|
final_notification_configuration[legacy_input] = module.params.get(legacy_input)
|
||||||
# Give anything in notification_configuration prescedence over the individual inputs
|
# Give anything in notification_configuration prescedence over the individual inputs
|
||||||
if notification_configuration is not None:
|
if notification_configuration is not None:
|
||||||
@@ -440,17 +448,13 @@ def main():
|
|||||||
if messages is not None:
|
if messages is not None:
|
||||||
new_fields['messages'] = messages
|
new_fields['messages'] = messages
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(existing_item)
|
existing_item, new_fields,
|
||||||
elif state == 'present':
|
endpoint='notification_templates', item_type='notification_template',
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
associations={
|
||||||
module.create_or_update_if_needed(
|
}
|
||||||
existing_item, new_fields,
|
)
|
||||||
endpoint='notification_templates', item_type='notification_template',
|
|
||||||
associations={
|
|
||||||
}
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -108,6 +108,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(organization)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
org_fields = {'name': name}
|
org_fields = {'name': name}
|
||||||
if description is not None:
|
if description is not None:
|
||||||
@@ -117,12 +121,8 @@ def main():
|
|||||||
if max_hosts is not None:
|
if max_hosts is not None:
|
||||||
org_fields['max_hosts'] = max_hosts
|
org_fields['max_hosts'] = max_hosts
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing organization, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(organization, org_fields, endpoint='organizations', item_type='organization')
|
||||||
module.delete_if_needed(organization)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing organization, this will return on its own
|
|
||||||
module.create_or_update_if_needed(organization, org_fields, endpoint='organizations', item_type='organization')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -236,6 +236,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(project)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
project_fields = {
|
project_fields = {
|
||||||
'name': name,
|
'name': name,
|
||||||
@@ -260,7 +264,7 @@ def main():
|
|||||||
if scm_type == '':
|
if scm_type == '':
|
||||||
project_fields['local_path'] = local_path
|
project_fields['local_path'] = local_path
|
||||||
|
|
||||||
if state != 'absent' and (scm_update_cache_timeout != 0 and scm_update_on_launch is not True):
|
if scm_update_cache_timeout != 0 and scm_update_on_launch is not True:
|
||||||
module.warn('scm_update_cache_timeout will be ignored since scm_update_on_launch was not set to true')
|
module.warn('scm_update_cache_timeout will be ignored since scm_update_on_launch was not set to true')
|
||||||
|
|
||||||
# If we are doing a not manual project, register our on_change method
|
# If we are doing a not manual project, register our on_change method
|
||||||
@@ -269,12 +273,8 @@ def main():
|
|||||||
if wait and scm_type != '':
|
if wait and scm_type != '':
|
||||||
on_change = wait_for_project_update
|
on_change = wait_for_project_update
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing project, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(project, project_fields, endpoint='projects', item_type='project', on_create=on_change, on_update=on_change)
|
||||||
module.delete_if_needed(project)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing project, this will return on its own
|
|
||||||
module.create_or_update_if_needed(project, project_fields, endpoint='projects', item_type='project', on_create=on_change, on_update=on_change)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -102,6 +102,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(team)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
team_fields = {
|
team_fields = {
|
||||||
'name': new_name if new_name else name,
|
'name': new_name if new_name else name,
|
||||||
@@ -110,12 +114,8 @@ def main():
|
|||||||
if description is not None:
|
if description is not None:
|
||||||
team_fields['description'] = description
|
team_fields['description'] = description
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing team, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(team, team_fields, endpoint='teams', item_type='team')
|
||||||
module.delete_if_needed(team)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing team, this will return on its own
|
|
||||||
module.create_or_update_if_needed(team, team_fields, endpoint='teams', item_type='team')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -147,6 +147,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
new_fields = {}
|
new_fields = {}
|
||||||
if username:
|
if username:
|
||||||
@@ -164,12 +168,8 @@ def main():
|
|||||||
if password:
|
if password:
|
||||||
new_fields['password'] = password
|
new_fields['password'] = password
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(existing_item, new_fields, endpoint='users', item_type='user')
|
||||||
module.delete_if_needed(existing_item)
|
|
||||||
elif state == 'present':
|
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
|
||||||
module.create_or_update_if_needed(existing_item, new_fields, endpoint='users', item_type='user')
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -175,6 +175,13 @@ def main():
|
|||||||
organization_id = module.resolve_name_to_id('organizations', organization)
|
organization_id = module.resolve_name_to_id('organizations', organization)
|
||||||
search_fields['organization'] = new_fields['organization'] = organization_id
|
search_fields['organization'] = new_fields['organization'] = organization_id
|
||||||
|
|
||||||
|
# Attempt to look up an existing item based on the provided data
|
||||||
|
existing_item = module.get_one('workflow_job_templates', **{'data': search_fields})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
inventory = module.params.get('inventory')
|
inventory = module.params.get('inventory')
|
||||||
if inventory:
|
if inventory:
|
||||||
new_fields['inventory'] = module.resolve_name_to_id('inventories', inventory)
|
new_fields['inventory'] = module.resolve_name_to_id('inventories', inventory)
|
||||||
@@ -183,9 +190,6 @@ def main():
|
|||||||
if webhook_credential:
|
if webhook_credential:
|
||||||
new_fields['webhook_credential'] = module.resolve_name_to_id('webhook_credential', webhook_credential)
|
new_fields['webhook_credential'] = module.resolve_name_to_id('webhook_credential', webhook_credential)
|
||||||
|
|
||||||
# Attempt to look up an existing item based on the provided data
|
|
||||||
existing_item = module.get_one('workflow_job_templates', **{'data': search_fields})
|
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
new_fields['name'] = new_name if new_name else name
|
new_fields['name'] = new_name if new_name else name
|
||||||
for field_name in (
|
for field_name in (
|
||||||
@@ -213,16 +217,12 @@ def main():
|
|||||||
module._encrypted_changed_warning('survey_spec', existing_item, warning=True)
|
module._encrypted_changed_warning('survey_spec', existing_item, warning=True)
|
||||||
on_change = update_survey
|
on_change = update_survey
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(existing_item)
|
existing_item, new_fields,
|
||||||
elif state == 'present':
|
endpoint='workflow_job_templates', item_type='workflow_job_template',
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
on_create=on_change, on_update=on_change
|
||||||
module.create_or_update_if_needed(
|
)
|
||||||
existing_item, new_fields,
|
|
||||||
endpoint='workflow_job_templates', item_type='workflow_job_template',
|
|
||||||
on_create=on_change, on_update=on_change
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -218,6 +218,13 @@ def main():
|
|||||||
workflow_job_template_id = wfjt_data['id']
|
workflow_job_template_id = wfjt_data['id']
|
||||||
search_fields['workflow_job_template'] = new_fields['workflow_job_template'] = workflow_job_template_id
|
search_fields['workflow_job_template'] = new_fields['workflow_job_template'] = workflow_job_template_id
|
||||||
|
|
||||||
|
# Attempt to look up an existing item based on the provided data
|
||||||
|
existing_item = module.get_one('workflow_job_template_nodes', **{'data': search_fields})
|
||||||
|
|
||||||
|
if state == 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
unified_job_template = module.params.get('unified_job_template')
|
unified_job_template = module.params.get('unified_job_template')
|
||||||
if unified_job_template:
|
if unified_job_template:
|
||||||
new_fields['unified_job_template'] = module.resolve_name_to_id('unified_job_templates', unified_job_template)
|
new_fields['unified_job_template'] = module.resolve_name_to_id('unified_job_templates', unified_job_template)
|
||||||
@@ -226,9 +233,6 @@ def main():
|
|||||||
if inventory:
|
if inventory:
|
||||||
new_fields['inventory'] = module.resolve_name_to_id('inventory', inventory)
|
new_fields['inventory'] = module.resolve_name_to_id('inventory', inventory)
|
||||||
|
|
||||||
# Attempt to look up an existing item based on the provided data
|
|
||||||
existing_item = module.get_one('workflow_job_template_nodes', **{'data': search_fields})
|
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
for field_name in (
|
for field_name in (
|
||||||
'identifier', 'extra_data', 'scm_branch', 'job_type', 'job_tags', 'skip_tags',
|
'identifier', 'extra_data', 'scm_branch', 'job_type', 'job_tags', 'skip_tags',
|
||||||
@@ -262,16 +266,12 @@ def main():
|
|||||||
# In the case of a new object, the utils need to know it is a node
|
# In the case of a new object, the utils need to know it is a node
|
||||||
new_fields['type'] = 'workflow_job_template_node'
|
new_fields['type'] = 'workflow_job_template_node'
|
||||||
|
|
||||||
if state == 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(existing_item)
|
existing_item, new_fields,
|
||||||
elif state == 'present':
|
endpoint='workflow_job_template_nodes', item_type='workflow_job_template_node',
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
associations=association_fields
|
||||||
module.create_or_update_if_needed(
|
)
|
||||||
existing_item, new_fields,
|
|
||||||
endpoint='workflow_job_template_nodes', item_type='workflow_job_template_node',
|
|
||||||
associations=association_fields
|
|
||||||
)
|
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
@@ -40,17 +40,13 @@
|
|||||||
that:
|
that:
|
||||||
- "result is changed"
|
- "result is changed"
|
||||||
|
|
||||||
- name: Delete the source inventory
|
- name: Delete the inventory source with an invalid cred, source_project, sourece_script specified
|
||||||
tower_inventory_source:
|
tower_inventory_source:
|
||||||
name: "{{ openstack_inv_source }}"
|
name: "{{ openstack_inv_source }}"
|
||||||
description: Source for Test inventory
|
|
||||||
inventory: "{{ openstack_inv }}"
|
inventory: "{{ openstack_inv }}"
|
||||||
credential: "{{ openstack_cred }}"
|
credential: "Does Not Exit"
|
||||||
overwrite: true
|
source_project: "Does Not Exist"
|
||||||
update_on_launch: true
|
source_script: "Does Not Exist"
|
||||||
source_vars:
|
|
||||||
private: false
|
|
||||||
source: openstack
|
|
||||||
state: absent
|
state: absent
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
|
|||||||
@@ -147,10 +147,11 @@
|
|||||||
- name: Delete Job Template 1
|
- name: Delete Job Template 1
|
||||||
tower_job_template:
|
tower_job_template:
|
||||||
name: "{{ jt1 }}"
|
name: "{{ jt1 }}"
|
||||||
project: "{{ proj1 }}"
|
|
||||||
inventory: Demo Inventory
|
|
||||||
playbook: hello_world.yml
|
playbook: hello_world.yml
|
||||||
job_type: run
|
job_type: run
|
||||||
|
project: "Does Not Exist"
|
||||||
|
inventory: "Does Not Exist"
|
||||||
|
webhook_credential: "Does Not Exist"
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
|||||||
@@ -104,9 +104,11 @@
|
|||||||
unified_job_template: "{{ jt1_name }}"
|
unified_job_template: "{{ jt1_name }}"
|
||||||
workflow: "{{ wfjt_name }}"
|
workflow: "{{ wfjt_name }}"
|
||||||
|
|
||||||
- name: Delete a workflow job template
|
- name: Delete a workflow job template with an invalid inventory and webook_credential
|
||||||
tower_workflow_job_template:
|
tower_workflow_job_template:
|
||||||
name: "{{ wfjt_name }}"
|
name: "{{ wfjt_name }}"
|
||||||
|
inventory: "Does Not Exist"
|
||||||
|
webhook_credential: "Does Not Exist"
|
||||||
state: absent
|
state: absent
|
||||||
register: result
|
register: result
|
||||||
|
|
||||||
|
|||||||
@@ -188,6 +188,10 @@ def main():
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
if state is 'absent':
|
||||||
|
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
||||||
|
module.delete_if_needed(existing_item)
|
||||||
|
|
||||||
# Create the data that gets sent for create and update
|
# Create the data that gets sent for create and update
|
||||||
new_fields = {}
|
new_fields = {}
|
||||||
{% for option in item['json']['actions']['POST'] %}
|
{% for option in item['json']['actions']['POST'] %}
|
||||||
@@ -203,20 +207,16 @@ def main():
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
if state is 'absent':
|
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
||||||
# If the state was absent we can let the module delete it if needed, the module will handle exiting from this
|
module.create_or_update_if_needed(
|
||||||
module.delete_if_needed(existing_item)
|
existing_item, new_fields,
|
||||||
elif state is 'present':
|
endpoint='{{ item_type }}', item_type='{{ singular_item_type }}',
|
||||||
# If the state was present and we can let the module build or update the existing item, this will return on its own
|
associations={
|
||||||
module.create_or_update_if_needed(
|
|
||||||
existing_item, new_fields,
|
|
||||||
endpoint='{{ item_type }}', item_type='{{ singular_item_type }}',
|
|
||||||
associations={
|
|
||||||
{% for association in associations[item_type] | default([]) %}
|
{% for association in associations[item_type] | default([]) %}
|
||||||
'{{ association['endpoint'] }}': {{ association['related_item'] }}_ids,
|
'{{ association['endpoint'] }}': {{ association['related_item'] }}_ids,
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
|
|||||||
Reference in New Issue
Block a user