community.general.vertica_configuration (8.5.0) — module

Updates Vertica configuration parameters

Authors: Dariusz Owczarek (@dareko)

Install collection

Install with ansible-galaxy collection install community.general:==8.5.0


Add to requirements.yml

  collections:
    - name: community.general
      version: 8.5.0

Description

Updates Vertica configuration parameters.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Updating load_balance_policy
  community.general.vertica_configuration: name=failovertostandbyafter value='8 hours'

Inputs

    
db:
    description:
    - Name of the Vertica database.
    type: str

port:
    default: '5433'
    description:
    - Vertica cluster port to connect to.
    type: str

value:
    description:
    - Value of the parameter to be set.
    type: str

cluster:
    default: localhost
    description:
    - Name of the Vertica cluster.
    type: str

parameter:
    aliases:
    - name
    description:
    - Name of the parameter to update.
    required: true
    type: str

login_user:
    default: dbadmin
    description:
    - The username used to authenticate with.
    type: str

login_password:
    description:
    - The password used to authenticate with.
    type: str