New in version 2.8.
Parameter | Choices/Defaults | Comments |
---|---|---|
baseuri
-
/ required
|
Base URI of iDRAC controller
|
|
category
-
/ required
|
Category to execute on iDRAC controller
|
|
command
-
/ required
|
List of commands to execute on iDRAC controller
|
|
password
-
/ required
|
Password for authentication with iDRAC controller
|
|
timeout
integer
|
Default: 10
|
Timeout in seconds for URL requests to OOB controller
|
username
-
/ required
|
User for authentication with iDRAC controller
|
- name: Get Manager attributes with a default of 20 seconds
idrac_redfish_command:
category: Manager
command: GetManagerAttributes
baseuri: "{{ baseuri }}"
username: "{{ username }}"
password: "{{ password }}"
timeout: 20
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
msg
dictionary
|
always |
different results depending on task
Sample:
List of Manager attributes
|
Hint
If you notice any issues in this documentation you can edit this document to improve it.