mirror of
https://github.com/ansible/awx.git
synced 2026-03-17 17:07:33 -02:30
declare types in Ansible Tower module options
This commit is contained in:
committed by
Ryan Petrello
parent
e097bc61c8
commit
c103a813bf
@@ -27,19 +27,24 @@ options:
|
||||
description:
|
||||
- The username of the user.
|
||||
required: True
|
||||
type: str
|
||||
first_name:
|
||||
description:
|
||||
- First name of the user.
|
||||
type: str
|
||||
last_name:
|
||||
description:
|
||||
- Last name of the user.
|
||||
type: str
|
||||
email:
|
||||
description:
|
||||
- Email address of the user.
|
||||
required: True
|
||||
type: str
|
||||
password:
|
||||
description:
|
||||
- Password of the user.
|
||||
type: str
|
||||
superuser:
|
||||
description:
|
||||
- User is a system wide administrator.
|
||||
@@ -55,6 +60,7 @@ options:
|
||||
- Desired state of the resource.
|
||||
default: "present"
|
||||
choices: ["present", "absent"]
|
||||
type: str
|
||||
|
||||
requirements:
|
||||
- ansible-tower-cli >= 3.2.0
|
||||
|
||||
Reference in New Issue
Block a user