cohesity.dataprotect.cohesity_plugin (1.1.9) — module

Management of Cohesity Datastore Plugin

| "added in version" 1.1.9 of cohesity.dataprotect"

Authors: Naveena (@naveena-maplelabs)

Install collection

Install with ansible-galaxy collection install cohesity.dataprotect:==1.1.9


Add to requirements.yml

  collections:
    - name: cohesity.dataprotect
      version: 1.1.9

Description

Ansible Module used to register or remove the Cohesity Protection Sources to/from a Cohesity Cluster.

When executed in a playbook, the Cohesity Protection Source will be validated and the appropriate

state action will be applied.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
# Install cohesity connector plugin on a postgresql host.
---
- cohesity_source:
    password: password
    platform: PostgreSQL
    server: cohesity.lab
    state: present
    username: admin

Inputs

    
state:
    choices:
    - present
    - absent
    default: present
    description:
    - Determines the state of the Protection Source
    type: str

cluster:
    aliases:
    - cohesity_server
    description:
    - IP or FQDN for the Cohesity Cluster
    type: str

upgrade:
    default: false
    description:
    - Determines whether to upgrade the connector plugin if already installed.
    type: bool

endpoint:
    description:
    - Specifies the network endpoint of the Protection Source where it is reachable. It
      could
    - be an URL or hostname or an IP address of the Protection Source
    required: true
    type: str

platform:
    choices:
    - Linux
    - Windows
    - Aix
    - Solaris
    - SapHana
    - SapOracle
    - CockroachDB
    - MySQL
    - VMWareCDPFilter
    - PostgreSQL
    default: Linux
    description:
    - Type of the UDA source to be registered.
    type: str

scripts_dir:
    default: /opt
    description:
    - Absolute path of the scripts used to interact with the UDA source.
    type: str

netmask_bits:
    description:
    - Applicable when the platform type is PostgreSQL and state is present.
    - Is required to add the SapHana hosts to the cluster's global allow lists.
    type: int

cohesity_admin:
    aliases:
    - admin_name
    - cohesity_user
    - username
    description:
    - Username with which Ansible will connect to the Cohesity Cluster. Domain Specific
      credentails can be configured in following formats
    - AD.domain.com/username
    - AD.domain.com/username@tenant
    - LOCAL/username@tenant
    type: str

validate_certs:
    aliases:
    - cohesity_validate_certs
    default: true
    description:
    - Switch determines if SSL Validation should be enabled.
    type: bool

cohesity_password:
    aliases:
    - password
    - admin_pass
    description:
    - Password belonging to the selected Username.  This parameter will not be logged.
    type: str

download_location:
    description:
    - Absolute path of the scripts used to store the downloaded connection plugin.
    type: str