You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible-msvsphere.ci/roles/postgresql_server/meta/argument_specs.yml

36 lines
961 B

---
argument_specs:
main:
short_description: A role that installs and configures a PostgreSQL server
author: Eugene Zamriy
version_added: '0.1.0'
options:
postgresql_major_version:
description: PostgreSQL major version. For MSVSphere 9.x possible values are "13" and "15".
default: '13'
choices:
- '13'
- '15'
type: 'str'
required: false
postgresql_listen_address:
description: TCP/IP address(es) on which the server is to listen for connections.
type: 'str'
required: false
postgresql_max_connections:
description: Maximum number of concurrent connections.
type: 'int'
required: false
postgresql_password_encryption:
description: Password encryption algorithm.
default: ''
choices:
- ''
- scram-sha-256
- md5
type: 'str'
required: false