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)
- Host: GitHub
- URL: https://github.com/kostiantyn-nemchenko/ansible-module-postgresql-setting
- Owner: kostiantyn-nemchenko
- License: mit
- Created: 2017-09-11T13:48:38.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-04T14:10:17.000Z (almost 8 years ago)
- Last Synced: 2025-01-23T07:11:17.428Z (about 1 year ago)
- Topics: ansible, ansible-modules, databases, postgresql, sql
- Language: Python
- Homepage:
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```