Add missing roles to tower_role module (#56182)

* Add missing roles to tower_role module

* Placate 'ansible-test sanity --test pep8'
pull/56235/head
stoned 6 years ago committed by ansibot
parent 463a7ff5ca
commit 59d7ce6c3b

@ -33,7 +33,8 @@ options:
description: description:
- The role type to grant/revoke. - The role type to grant/revoke.
required: True required: True
choices: ["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor"] choices: ["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor", "project_admin", "inventory_admin", "credential_admin",
"workflow_admin", "notification_admin", "job_template_admin"]
target_team: target_team:
description: description:
- Team that the role acts on. - Team that the role acts on.
@ -113,7 +114,8 @@ def main():
argument_spec = dict( argument_spec = dict(
user=dict(), user=dict(),
team=dict(), team=dict(),
role=dict(choices=["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor"]), role=dict(choices=["admin", "read", "member", "execute", "adhoc", "update", "use", "auditor", "project_admin", "inventory_admin", "credential_admin",
"workflow_admin", "notification_admin", "job_template_admin"]),
target_team=dict(), target_team=dict(),
inventory=dict(), inventory=dict(),
job_template=dict(), job_template=dict(),

Loading…
Cancel
Save