From 8c0366675abd92769c6166a589a36dd66f283669 Mon Sep 17 00:00:00 2001 From: Alan Rominger Date: Fri, 16 Apr 2021 10:25:21 -0400 Subject: [PATCH] Remove source_script from awx collection --- awx_collection/plugins/modules/tower_inventory_source.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/awx_collection/plugins/modules/tower_inventory_source.py b/awx_collection/plugins/modules/tower_inventory_source.py index 0353576b02..c1198015d7 100644 --- a/awx_collection/plugins/modules/tower_inventory_source.py +++ b/awx_collection/plugins/modules/tower_inventory_source.py @@ -48,10 +48,6 @@ options: description: - For an SCM based inventory source, the source path points to the file within the repo to use as an inventory. type: str - source_script: - description: - - Inventory script to be used when group type is C(custom). - type: str source_vars: description: - The variables or environment fields to apply to this source type. @@ -164,7 +160,6 @@ def main(): # source=dict(choices=["scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "tower", "custom"]), source_path=dict(), - source_script=dict(), source_vars=dict(type='dict'), enabled_var=dict(), enabled_value=dict(), @@ -194,7 +189,6 @@ def main(): new_name = module.params.get('new_name') inventory = module.params.get('inventory') organization = module.params.get('organization') - source_script = module.params.get('source_script') credential = module.params.get('credential') ee = module.params.get('execution_environment') source_project = module.params.get('source_project')