diff options
author | Théophile Helleboid - chtitux <chtitux@gmail.com> | 2020-06-05 13:40:43 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-05 13:40:43 +0400 |
commit | 9e6f9658fbf5db657a2dd8465bf0ae4f41da161e (patch) | |
tree | 0e7e023c1b7f580db314c78bf3b65b70563efcc7 /README.md | |
parent | ebe451adda84672f9872187164df279dbfed7a35 (diff) | |
parent | 587f87bbf278a80b14a182146724a9ebf1fd98a2 (diff) | |
download | ansible-postgresql-role-9e6f9658fbf5db657a2dd8465bf0ae4f41da161e.tar.gz ansible-postgresql-role-9e6f9658fbf5db657a2dd8465bf0ae4f41da161e.tar.zst ansible-postgresql-role-9e6f9658fbf5db657a2dd8465bf0ae4f41da161e.zip |
Merge pull request #13 from paulRbr/optional-restore-command
recovery: optional restore_command & allow custom command if needed
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -49,6 +49,17 @@ postgres_clusters: # Mandatory | |||
49 | checksums: True # Optional | 49 | checksums: True # Optional |
50 | fsync_enabled: False # Optional | 50 | fsync_enabled: False # Optional |
51 | archive_enabled: False # Optional | 51 | archive_enabled: False # Optional |
52 | wal_level: 'logical' # Optional | ||
53 | max_replication_slots: 10 # Optional | ||
54 | barman_directory: None # Optional | ||
55 | # Define cluster as a standby server | ||
56 | primary: # Optional | ||
57 | host: '127.0.1.1' # Mandatory | ||
58 | port: 5433 # Mandatory | ||
59 | replication_user: 'replicator' # Mandatory | ||
60 | replication_password: 'SuperSecret' # Mandatory | ||
61 | restore_command: None # Optional | ||
62 | restore_barman_directory: None # Optional | ||
52 | # List of users to be created (optional) | 63 | # List of users to be created (optional) |
53 | users: | 64 | users: |
54 | - username: 'replicator' # Mandatory | 65 | - username: 'replicator' # Mandatory |