mirror of
https://github.com/ansible/awx.git
synced 2024-10-30 05:25:29 +03:00
sqaushed and fixed sanity test issues
This commit is contained in:
parent
a9e5981cfe
commit
15041e57b2
@ -35,7 +35,7 @@ options:
|
||||
job_type:
|
||||
description:
|
||||
- The job type to use for the job template.
|
||||
required: True
|
||||
required: False
|
||||
choices: ["run", "check"]
|
||||
type: str
|
||||
inventory:
|
||||
|
@ -146,7 +146,7 @@ except ImportError:
|
||||
|
||||
def main():
|
||||
argument_spec = dict(
|
||||
name=dict(),
|
||||
name=dict(required=True),
|
||||
description=dict(),
|
||||
organization=dict(),
|
||||
scm_type=dict(choices=['manual', 'git', 'hg', 'svn'], default='manual'),
|
||||
|
@ -125,7 +125,7 @@ def main():
|
||||
user=dict(),
|
||||
team=dict(),
|
||||
role=dict(choices=["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor", "project_admin", "inventory_admin", "credential_admin",
|
||||
"workflow_admin", "notification_admin", "job_template_admin"]),
|
||||
"workflow_admin", "notification_admin", "job_template_admin"], required=True),
|
||||
target_team=dict(),
|
||||
inventory=dict(),
|
||||
job_template=dict(),
|
||||
|
Loading…
Reference in New Issue
Block a user