dellemc.vxrail.dellemc_vxrail_system_get_management_accounts (2.1.0) — module

Retrieve VxRail Management Account Info (VC Only)

| "added in version" 1.6.0 of dellemc.vxrail"

Authors: VxRail Development Team(@VxRailDevTeam) <ansible.team@dell.com>

Install collection

Install with ansible-galaxy collection install dellemc.vxrail:==2.1.0


Add to requirements.yml

  collections:
    - name: dellemc.vxrail
      version: 2.1.0

Description

This module will retrieve the VxRail System vCenter management account information

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: Retrieve VxRail Management Account Info (VC Only)
    dellemc_vxrail_system_get_management_accounts:
        vxmip: "{{ vxmip }}"
        vcadmin: "{{ vcadmin }}"
        vcpasswd: "{{ vcpasswd }}"
        api_version_number: "{{ api_version_number }}"
        timeout : "{{ timeout }}"

Inputs

    
vxmip:
    description: The IP address of the VxRail Manager System
    required: true
    type: str

timeout:
    default: 60
    description: Time out value for getting management account information, the default
      value is 60 seconds
    required: false
    type: int

vcadmin:
    description: Administrative account of the vCenter Server the VxRail Manager is registered
      to
    required: true
    type: str

vcpasswd:
    description: The password for the administrator account provided in vcadmin
    required: true
    type: str

api_version_number:
    description: A specific version number to use for the API call. If not included, will
      use the highest version by default
    required: false
    type: int

Outputs

Management_Accounts_Info:
  description: The retrieved VxRail system management accounts information (vCenter
    Only)
  returned: always
  sample: "[\n    {\n        \"component\": \"VC\",\n        \"hostname\": null,\n\
    \        \"username\": \"management@vsphere.local\"\n    }\n]"
  type: dict