ctera.ctera.ctera_filer_ntp (2.2.17) — module

Manage the NTP configuration of the CTERA Edge filer

Authors: Saimon Michelson (@saimonation), Ygal Blum (@ygalblum)

preview | supported by community

Install collection

Install with ansible-galaxy collection install ctera.ctera:==2.2.17


Add to requirements.yml

  collections:
    - name: ctera.ctera
      version: 2.2.17

Description

Set the NTP configuration of the CTERA Edge filer


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Configure NTP servers
  ctera_filer_ntp:
    servers:
      - "0.pool.ntp.org"
      - "1.pool.ntp.org"
      - "2.pool.ntp.org"
    ctera_host: "{{ ctera_filer_hostname }}"
    ctera_user: "{{ ctera_filer_user }}"
    ctera_password: "{{ ctera_filer_password }}"

Inputs

    
state:
    choices:
    - enabled
    - disabled
    default: enabled
    description: Whether the NTP service should be enabled or not
    type: str

servers:
    description: A list of NTP servers
    elements: str
    required: false
    type: list

ctera_host:
    description: IP Address or FQDN of the CTERA Networks Host
    required: true
    type: str

ctera_port:
    description: Connection port to the Host
    type: int

ctera_user:
    description: User Name for communicating with the CTERA Networks Host
    required: true
    type: str

ctera_https:
    default: true
    description: Connect to the Host using HTTPS
    type: bool

ctera_password:
    description: Password of the user
    required: true
    type: str

ctera_trust_certificate:
    default: false
    description: Trust unverified certificates
    type: bool