1
0
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:
Jake Jackson 2019-11-20 14:57:15 -05:00
parent a9e5981cfe
commit 15041e57b2
3 changed files with 3 additions and 3 deletions

View File

@ -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:

View File

@ -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'),

View File

@ -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(),