open-vault/website/source/docs/secrets/databases/postgresql.html.md
Seth Vargo 0274a0f639 Rename database plugins for SEO (#3156)
When we "nest" like this, it's important to use a common suffix,
"Database Secret Backend" in this case, so that the SEO minions can
properly group search results for end users.
2017-08-14 10:46:39 -04:00

2.1 KiB

layout page_title sidebar_current description
docs PostgreSQL Database Plugin - Database Secret Backend docs-secrets-databases-postgresql The PostgreSQL plugin for Vault's Database backend generates database credentials to access PostgreSQL.

PostgreSQL Database Plugin

Name: postgresql-database-plugin

The PostgreSQL Database Plugin is one of the supported plugins for the Database backend. This plugin generates database credentials dynamically based on configured roles for the PostgreSQL database.

See the Database Backend docs for more information about setting up the Database Backend.

Quick Start

After the Database Backend is mounted you can configure a PostgreSQL connection by specifying this plugin as the "plugin_name" argument. Here is an example configuration:

$ vault write database/config/postgresql \
    plugin_name=postgresql-database-plugin \
    allowed_roles="readonly" \
    connection_url="postgresql://root:root@localhost:5432/"

The following warnings were returned from the Vault server:
* Read access to this endpoint should be controlled via ACLs as it will return the connection details as is, including passwords, if any.

Once the PostgreSQL connection is configured we can add a role. The PostgreSQL plugin replaces {{expiration}} in statements with a formated timestamp:

$ vault write database/roles/readonly \
    db_name=postgresql \
    creation_statements="CREATE ROLE \"{{name}}\" WITH LOGIN PASSWORD '{{password}}' VALID UNTIL '{{expiration}}'; \
        GRANT SELECT ON ALL TABLES IN SCHEMA public TO \"{{name}}\";" \
    default_ttl="1h" \
    max_ttl="24h"

Success! Data written to: database/roles/readonly

This role can be used to retrieve a new set of credentials by querying the "database/creds/readonly" endpoint.

API

The full list of configurable options can be seen in the PostgreSQL database plugin API page.

For more information on the Database secret backend's HTTP API please see the Database secret backend API page.