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
"Description": "user name description",
"Name": "user_name",
"Password": null,
"UserName": "user_name",
"RoleId": "10",
"Locked": false,
"IsBuiltin": true,
"Enabled": true
}
}
Examples
- name: Retrieve basic details of all accounts.
dellemc_ome_user_facts:
hostname: "192.168.0.1"
username: "username"
password: "password"
- name: Retrieve details of a specific account identified by its account ID.
dellemc_ome_user_facts:
hostname: "192.168.0.1"
username: "username"
password: "password"
account_id: 1
Configure user accounts
Module: ome_user
Synopsis
This module:
● creates a new user account.
● modifies or deletes an existing user account.
Options
Table 57. ome_user
Parameter Required Default Choices Comments
hostname Yes NA NA Target IP Address or hostname
username Yes NA NA Target username
password Yes NA NA Target user password
port No 443 NA Target device HTTPS port
state No present
● present
● absent
● C(present) creates a user in case the I(UserName)
provided inside I(attributes) does not exist .
● C(present) modifies a user in case the I(UserName)
provided inside I(attributes) exists .
● C(absent) deletes an existing user.
user_id No NA NA
Unique ID of the user to be deleted.
NOTE: This option is mandatory for C(absent)
operations.
attributes No { } NA
Payload data for the user operations. It can take the
following attributes for C(present):
● UserTypeId
● DirectoryServiceId
● Description
● Name
Modules for OpenManage Enterprise (OME) 61