dellemc.vxrail.dellemc_vxrail_system_ntp_change (2.2.0) — module

Change VxRail NTP settings

| "added in version" 1.4.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 change the system's NTP settings.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
  - name: Changes the VxRail NTP settings
    dellemc_vxrail_system_ntp_change:
        vxmip: "{{ vxmip }}"
        vcadmin: "{{ vcadmin }}"
        vcpasswd: "{{ vcpasswd }}"
        components: "{{ components }}"
        servers: "{{ servers }}"
        timeout : "{{ timeout }}"
        api_version_number: "{{ api_version_number }}"

Inputs

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

servers:
    description: A list of NTP servers to be set for the system.
    elements: str
    required: true
    type: list

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

components:
    default: ALL
    description: Indicates if the new NTP servers are set for VxRail Manager ("VXM") or
      all ("ALL"). Must be fully capitalized. Default Value is "ALL".
    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_NTP_Change:
  description: Changes the VxRail NTP settings. Returns the value that was set.
  returned: always
  sample: "{\n    \"servers\": [\n        \"172.24.1.167\",\n        \"172.23.1.167\"\
    \n    ]\n}"
  type: dict