Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions plugins/modules/idrac_server_config_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,11 @@
- If C(BIOS), this module exports or imports BIOS configuration from SCP file.
- If C(NIC), this module exports or imports NIC configuration from SCP file.
- If C(RAID), this module exports or imports RAID configuration from SCP file.
- If C(EVENTFILTERS), this module exports or imports EVENTFILTERS configuration from SCP file.
- If C(SUPPORTASSIST), this module exports or imports SUPPORTASSIST configuration from SCP file.
- If C(LIFECYCLECONTROLLER), this module exports or imports LIFECYCLECONTROLLER configuration from SCP file.
type: str
choices: ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID']
choices: ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID', 'EVENTFILTERS', 'SUPPORTASSIST', 'LIFECYCLECONTROLLER']
Comment thread
sachin-apa marked this conversation as resolved.
default: 'ALL'
shutdown_type:
description:
Expand Down Expand Up @@ -451,7 +454,7 @@ def main():
"share_password": {"required": False, "type": 'str',
"aliases": ['share_pwd'], "no_log": True},
"scp_components": {"required": False,
"choices": ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID'],
"choices": ['ALL', 'IDRAC', 'BIOS', 'NIC', 'RAID', 'EVENTFILTERS', 'SUPPORTASSIST', 'LIFECYCLECONTROLLER'],
"default": 'ALL'},

"scp_file": {"required": False, "type": 'str'},
Expand Down