dellemc.vxrail.dellemc_vxrail_system_validate_credential (2.2.0) — module

Validate VxRail System Credential

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

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

Install collection

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


Add to requirements.yml

  collections:
    - name: dellemc.vxrail
      version: 2.2.0

Description

This module will validate the username and password for the specified software components.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: Validate VxRail System Credential
    dellemc_vxrail_system_validate_credential:
        vxmip: "{{ vxmip }}"
        vcadmin: "{{ vcadmin }}"
        vcpasswd: "{{ vcpasswd }}"
        vc_root_account: "{{ vc_root_account }}"
        vc_root_passwd: "{{ vc_root_passwd }}"
        psc_root_account: "{{ psc_root_account }}"
        psc_root_passwd: "{{ psc_root_passwd }}"
        host_sn: "{{host_sn}}"
        host_root_account: "{{ host_root_account }}"
        host_root_passwd: "{{ host_root_passwd }}"
        timeout : "{{ timeout | default(omit) }}"
        api_version_number: "{{ api_version_number | default(omit) }}"

Inputs

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

host_sn:
    description: The SN of the host
    required: false
    type: str

timeout:
    default: 60
    description: Time out value for updating proxy 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

vc_root_passwd:
    description: The password for the rFalseoot account provided in vcroot
    required: false
    type: str

psc_root_passwd:
    description: The password for the root account provided in PSC
    required: false
    type: str

vc_root_account:
    description: Root account of the vCenter Server the VxRail Manager is registered to
    required: false
    type: str

host_root_passwd:
    description: The password for the root account provided in host
    required: false
    type: str

psc_root_account:
    description: Root account of the PSC the VxRail Manager is registered to
    required: false
    type: str

host_root_account:
    description: Root account of the host
    required: false
    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

System_Validate_Credential:
  description: Validate VxRail System Credential
  returned: always
  sample: "{\n  \"message\": \"Credential Validation is successful.\"\n}"
  type: dict