Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 2.0 User’s Guide
- Overview
- Getting Started
- Modules for iDRAC
- How OpenManage Ansible Modules for iDRAC works
- Running your first iDRAC Playbook
- Updating Firmware
- Configuring PowerEdge Servers
- Deploying operating system
- Server Inventory
- Server administration tasks
- Modules for OpenManage Enterprise (OME)
- Troubleshooting
- Accessing documents from the Dell EMC support site
share_name: "/scp_folder"
share_user: "share_user_name"
share_pwd: "share_user_pwd"
scp_file: "scp_filename.xml"
scp_components: "ALL"
job_wait: True
- name: Export Server Configuration Profile to a network share
dellemc_idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_pwd: "user_pwd"
share_name: "192.168.0.2:/share"
share_user: "share_user_name"
share_pwd: "share_user_pwd"
job_wait: False
- name: Export Server Configuration Profile to a local path
dellemc_idrac_server_config_profile:
idrac_ip: "192.168.0.1"
idrac_user: "user_name"
idrac_pwd: "user_pwd"
share_name: "/scp_folder"
share_user: "share_user_name"
share_pwd: "share_user_pwd"
job_wait: False
Configuring iDRAC
Following are the modules responsible for configuring specific iDRAC attributes.
● Configure iDRAC users
● Configure iDRAC timezone
● Configure iDRAC eventing
● Configure iDRAC services
● Configure iDRAC network
Configure iDRAC users
Module: dellemc_configure_idrac_users
Synopsis
This module creates, modifies or deletes an iDRAC local user.
Check_mode support: Yes
Options
Table 13. dellemc_configure_idrac_users
Parameter Required Default Choices Comments
idrac_ip Yes NA NA iDRAC IP Address
idrac_user Yes NA NA iDRAC username
idrac_pwd Yes NA NA iDRAC user password
idrac_port No 443 NA iDRAC port
share_name Yes NA NA
CIFS or NFS Network share or a local
path
share_user No NA NA
Network share user in the format
'user@domain' or 'domain\user' if user is
Modules for iDRAC 19