10 lines
413 B
Markdown
10 lines
413 B
Markdown
|
|
# Postgresql client role
|
||
|
|
This role will install postgresql client commands such as `psql`, `pg_dump`, `pg_restore` from the official postgresql repository.
|
||
|
|
|
||
|
|
The version of the tools installed is always the latest available, via the package `postgresql-client` from the official repository unless you explicitely define the list `postgres_client_versions` e.g.:
|
||
|
|
```yaml
|
||
|
|
postgres_client_versions:
|
||
|
|
- 15
|
||
|
|
- 17
|
||
|
|
```
|