Secrets Management
This feature is released as and should not be deployed in a production environment.
A secret is any sensitive piece of information required for API gateway operations. Secrets may be part of the core Kong Gateway configuration, they may be used in plugins, or they might be part of configuration associated with APIs serviced by the gateway.
Some of the most common types of secrets used by Kong Gateway include:
- Datastore usernames and passwords, used with PostgreSQL and Redis
- Private X.509 certificates
- API keys
- Sensitive plugin configuration fields, generally used for authentication
Kong Gateway lets you store certain values in a vault. By storing sensitive values as secrets, you ensure that they are not visible in plaintext throughout the platform, in places such as kong.conf
, in declarative configuration files, logs, or in the Kong Manager UI. Instead, you can reference each secret with a vault
reference. For example:
{vault://env/my_secret_postgres_password}
In this way, secrets management becomes centralized.
Referenceable values
The Kong Admin API certificate object can be stored as a secret.
The following plugins have fields that can be stored as secrets in a vault backend. These fields are labelled as referenceable
. See the documentation for each plugin to identify the referenceable fields:
- Forward Proxy Advanced
- GraphQL Rate Limiting Advanced
- Kafka Log
- Kafka Upstream
- LDAP Authentication Advanced
- OpenID Connect
- Proxy Cache Advanced
- Rate Limiting Advanced
- Vault Authentication
Supported backends
Kong Gateway supports the following vault backends:
- Environment variables
- AWS Secrets Manager
- Hashicorp Vault
See the backends overview for more information about each option.
Beta limitations
This feature is currently in beta. This means it has limited support from Kong and the functionality may change in the future.
Do not implement this feature in a product environment.
- The beta of this feature only supports
get
. There is noset
or secrets rotation support in the beta. - In this version, this feature isn’t enabled by default. To test it out, start Kong Gateway with
KONG_VAULTS=bundled
if running Kong in a container, or withvaults=bundled
set inkong.conf
. - The API endpoint is suffixed with
-beta
to avoid any possible conflicts. This endpoint will change once the beta is over.
Get started
To test out secrets management, see the following topics: