mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 12:40:06 -03:30
sqaushed and fixed sanity test issues
This commit is contained in:
@@ -35,7 +35,7 @@ options:
|
|||||||
job_type:
|
job_type:
|
||||||
description:
|
description:
|
||||||
- The job type to use for the job template.
|
- The job type to use for the job template.
|
||||||
required: True
|
required: False
|
||||||
choices: ["run", "check"]
|
choices: ["run", "check"]
|
||||||
type: str
|
type: str
|
||||||
inventory:
|
inventory:
|
||||||
|
|||||||
@@ -146,7 +146,7 @@ except ImportError:
|
|||||||
|
|
||||||
def main():
|
def main():
|
||||||
argument_spec = dict(
|
argument_spec = dict(
|
||||||
name=dict(),
|
name=dict(required=True),
|
||||||
description=dict(),
|
description=dict(),
|
||||||
organization=dict(),
|
organization=dict(),
|
||||||
scm_type=dict(choices=['manual', 'git', 'hg', 'svn'], default='manual'),
|
scm_type=dict(choices=['manual', 'git', 'hg', 'svn'], default='manual'),
|
||||||
|
|||||||
@@ -125,7 +125,7 @@ def main():
|
|||||||
user=dict(),
|
user=dict(),
|
||||||
team=dict(),
|
team=dict(),
|
||||||
role=dict(choices=["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor", "project_admin", "inventory_admin", "credential_admin",
|
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(),
|
target_team=dict(),
|
||||||
inventory=dict(),
|
inventory=dict(),
|
||||||
job_template=dict(),
|
job_template=dict(),
|
||||||
|
|||||||
Reference in New Issue
Block a user