mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 23:07:42 -02:30
Remove source_script from awx collection
This commit is contained in:
@@ -48,10 +48,6 @@ options:
|
|||||||
description:
|
description:
|
||||||
- For an SCM based inventory source, the source path points to the file within the repo to use as an inventory.
|
- For an SCM based inventory source, the source path points to the file within the repo to use as an inventory.
|
||||||
type: str
|
type: str
|
||||||
source_script:
|
|
||||||
description:
|
|
||||||
- Inventory script to be used when group type is C(custom).
|
|
||||||
type: str
|
|
||||||
source_vars:
|
source_vars:
|
||||||
description:
|
description:
|
||||||
- The variables or environment fields to apply to this source type.
|
- 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=dict(choices=["scm", "ec2", "gce", "azure_rm", "vmware", "satellite6", "openstack", "rhv", "tower", "custom"]),
|
||||||
source_path=dict(),
|
source_path=dict(),
|
||||||
source_script=dict(),
|
|
||||||
source_vars=dict(type='dict'),
|
source_vars=dict(type='dict'),
|
||||||
enabled_var=dict(),
|
enabled_var=dict(),
|
||||||
enabled_value=dict(),
|
enabled_value=dict(),
|
||||||
@@ -194,7 +189,6 @@ def main():
|
|||||||
new_name = module.params.get('new_name')
|
new_name = module.params.get('new_name')
|
||||||
inventory = module.params.get('inventory')
|
inventory = module.params.get('inventory')
|
||||||
organization = module.params.get('organization')
|
organization = module.params.get('organization')
|
||||||
source_script = module.params.get('source_script')
|
|
||||||
credential = module.params.get('credential')
|
credential = module.params.get('credential')
|
||||||
ee = module.params.get('execution_environment')
|
ee = module.params.get('execution_environment')
|
||||||
source_project = module.params.get('source_project')
|
source_project = module.params.get('source_project')
|
||||||
|
|||||||
Reference in New Issue
Block a user