mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-27 15:11:23 -07:00
Added a new module that can manage rules in pg_hba files. (#32666)
* Added a new module that can manage rules in pg_hba files. * Adding a backup_file option
This commit is contained in:
parent
1a57daf9b0
commit
d90cb71210
4 changed files with 868 additions and 0 deletions
|
@ -9,3 +9,16 @@ db_default: 'postgres'
|
|||
tmp_dir: '/tmp'
|
||||
db_session_role1: 'session_role1'
|
||||
db_session_role2: 'session_role2'
|
||||
|
||||
pg_hba_test_ips:
|
||||
- contype: local
|
||||
users: 'all,postgres'
|
||||
- source: '0000:ffff::'
|
||||
netmask: 'ffff:fff0::'
|
||||
- source: '192.168.0.0/24'
|
||||
netmask: ''
|
||||
databases: 'all,replication'
|
||||
- source: '0000:ff00::'
|
||||
netmask: 'ffff:ffff:ffff:ffff:ffff:ffff:ffff:ff00'
|
||||
- source: '172.16.0.0'
|
||||
netmask: '255.255.0.0'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue