Deprecated

Removed in None

i

Reason:Replaced with M(dellemc.openmanage.idrac_firmware_info). | Alternative:Use M(dellemc.openmanage.idrac_firmware_info) instead.

dellemc.openmanage.dellemc_get_firmware_inventory (7.6.1) — module

Get Firmware Inventory

| "added in version" 1.0.0 of dellemc.openmanage"

Authors: Rajeev Arakkal (@rajeevarakkal)

Install collection

Install with ansible-galaxy collection install dellemc.openmanage:==7.6.1


Add to requirements.yml

  collections:
    - name: dellemc.openmanage
      version: 7.6.1

Description

Get Firmware Inventory.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
---
- name: Get Installed Firmware Inventory
  dellemc.openmanage.dellemc_get_firmware_inventory:
      idrac_ip:   "192.168.0.1"
      idrac_user: "user_name"
      idrac_password:  "user_password"
      ca_path: "/path/to/ca_cert.pem"

Inputs

    
ca_path:
    description:
    - The Privacy Enhanced Mail (PEM) file that contains a CA certificate to be used for
      the validation.
    type: path
    version_added: 5.0.0
    version_added_collection: dellemc.openmanage

timeout:
    default: 30
    description: The socket level timeout in seconds.
    type: int
    version_added: 5.0.0
    version_added_collection: dellemc.openmanage

idrac_ip:
    description: iDRAC IP Address.
    required: true
    type: str

idrac_port:
    default: 443
    description: iDRAC port.
    type: int

idrac_user:
    description: iDRAC username.
    required: true
    type: str

idrac_password:
    aliases:
    - idrac_pwd
    description: iDRAC user password.
    required: true
    type: str

validate_certs:
    default: true
    description:
    - If C(False), the SSL certificates will not be validated.
    - Configure C(False) only on personally controlled sites where self-signed certificates
      are used.
    - Prior to collection version C(5.0.0), the I(validate_certs) is C(False) by default.
    type: bool
    version_added: 5.0.0
    version_added_collection: dellemc.openmanage