An open API service indexing awesome lists of open source software.

https://github.com/kostiantyn-nemchenko/ansible-module-postgresql-setting

An Ansible module for configuring PostgreSQL settings (GUCs)
https://github.com/kostiantyn-nemchenko/ansible-module-postgresql-setting

ansible ansible-modules databases postgresql sql

Last synced: 5 months ago
JSON representation

An Ansible module for configuring PostgreSQL settings (GUCs)

Awesome Lists containing this project

README

          

# ansible-module-pgsetting
An Ansible module for configuring PostgreSQL settings

# Examples

```
# Set work_mem parameter to 8MB
- postgresql_setting:
option: work_mem
value: 8MB
state: present

# Allow only local TCP/IP "loopback" connections to be made
- postgresql_setting:
option: listen_addresses
state: absent

# Enable autovacuum
- postgresql_setting:
option: autovacuum
value: on
```