Scan jobs have been removed, clean up old refs

see https://github.com/ansible/awx/issues/5603
This commit is contained in:
Elijah DeLee
2020-01-21 12:11:53 -05:00
parent 1ce197041f
commit 1e796076f5
5 changed files with 2 additions and 47 deletions

View File

@@ -31,7 +31,7 @@ options:
job_type:
description:
- Job_type to use for the job, only used if prompt for job_type is set.
choices: ["run", "check", "scan"]
choices: ["run", "check"]
type: str
inventory:
description:
@@ -145,7 +145,7 @@ def update_fields(module, p):
def main():
argument_spec = dict(
job_template=dict(required=True, type='str'),
job_type=dict(choices=['run', 'check', 'scan']),
job_type=dict(choices=['run', 'check']),
inventory=dict(type='str', default=None),
credential=dict(type='str', default=None),
limit=dict(),