Users Guide
Table Of Contents
- Dell EMC OpenManage Ansible Modules Version 3.0.0 User’s Guide
- Overview
- Getting Started
- Modules for iDRAC
- How OpenManage Ansible Modules work with iDRAC
- Running your first iDRAC Playbook
- Updating Firmware
- Configuring PowerEdge Servers
- Deploying operating system
- Server Inventory
- Server administration tasks
- Storage controller
- Modules for OpenManage Enterprise (OME)
- Modules for Redfish APIs
- Deprecated modules
- Deprecated iDRAC modules
- Install firmware
- View Lifecycle Controller status
- Export or Import Server Configuration Profile
- Configure time zone and NTP on iDRAC
- Configure iDRAC network
- Configure BIOS
- Configure iDRAC users
- Configure RAID
- Configure syslog
- Boot to a network ISO image
- Reset iDRAC
- View Lifecycle controller job status
- Export LC logs
- Delete LC job
- Delete LC job queue
- Deprecated OpenManage Enterprise (OME) modules
- Deprecated iDRAC modules
- Accessing documents from the Dell EMC support site
View templates
This module is deprecated and replaced with ome_template_info.
Module: dellemc_ome_template_facts
Synopsis
This module retrieves the list and details of all templates or details of a specific template.
Options
Table 103. dellemc_ome_template_facts
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
template_id No Na Na Unique ID of the template
Return Values
msg:
type: str
description: Over all template facts status.
returned: on error
sample: "Failed to fetch the template facts"
ansible_facts:
type: dict
description: Details of the templates.
returned: success
sample: {
"192.168.0.1": {
"CreatedBy": "system",
"CreationTime": "1970-01-31 00:00:56.372144",
"Description": "Tune workload for Performance Optimized Virtualization",
"HasIdentityAttributes": false,
"Id": 1,
"IdentityPoolId": 0,
"IsBuiltIn": true,
"IsPersistencePolicyValid": false,
"IsStatelessAvailable": false,
"LastUpdatedBy": null,
"LastUpdatedTime": "1970-01-31 00:00:56.372144",
"Name": "iDRAC 14G Enable Performance Profile for Virtualization",
"SourceDeviceId": 0,
"Status": 0,
"TaskId": 0,
"TypeId": 2,
"ViewTypeId": 4
}
}
Examples
- name: Retrieve basic details of all templates.
dellemc_ome_template_facts:
hostname: "192.168.0.1"
username: "username"
password: "password"
- name: Retrieve details of a specific template identified by its template ID.
dellemc_ome_template_facts:
hostname: "192.168.0.1"
username: "username"
Deprecated modules
151