ctera / ctera.ctera / 2.2.17 / module / ctera_filer_domain_controllers Set static domain controllers Authors: Saimon Michelson (@saimonation), Ygal Blum (@ygalblum) preview | supported by communityctera.ctera.ctera_filer_domain_controllers (2.2.17) — module
Install with ansible-galaxy collection install ctera.ctera:==2.2.17
collections: - name: ctera.ctera version: 2.2.17
Set static domain controllers to be used by the CTERA Edge Filer when connecting to directory services
- name: Set static domain controllers ctera.ctera.ctera_filer_domain_controllers: domain_controllers: - "192.168.100.50" - "192.168.100.51" - "*" ctera_host: "{{ ctera_filer_hostname }}" ctera_user: "{{ ctera_filer_user }}" ctera_password: "{{ ctera_filer_password }}"
- name: Remove static domain controllers ctera.ctera.ctera_filer_domain_controllers: state: absent ctera_host: "{{ ctera_filer_hostname }}" ctera_user: "{{ ctera_filer_user }}" ctera_password: "{{ ctera_filer_password }}"
state: choices: - present - absent default: present description: - Whether the specified domain controller configuration should exist or not. type: str 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 domain_controllers: description: List of ip addresses, hostnames, FQDN's or '*' elements: str required: false type: list ctera_trust_certificate: default: false description: Trust unverified certificates type: bool