Build your first agent in just a few minutes with [Rasa Copilot](https://hello.rasa.com/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta).

## Available in Rasa from 3.5.0

Rasa supports the following secrets managers:

- [HashiCorp Vault](https://www.hashicorp.com/en/products/vault)

Currently, Rasa supports safeguarding credentials for the following services:

- [Tracker Stores](/content/docs/reference/integrations/tracker-stores/index.html)

## HashiCorp Vault Secrets Manager

Use Vault Secrets Manager to store credentials used to authenticate access to external services. The credentials are stored in a Vault instance and can be encrypted at rest. To store credentials in a Vault instance, you can read the official Vault docs [Storing secrets in Vault](https://developer.hashicorp.com/vault/tutorials/getting-started/getting-started-first-secret).

You can also encrypt credentials at rest with [Vault Transit Engine](https://developer.hashicorp.com/vault/docs/secrets/transit).

note

Expiring tokens need to be renewed periodically, and the renewal process is done over the network, Rasa will try to renew the token 15 seconds before it expires. If the token's time-to-live (TTL) is less than 15 seconds, we will try to renew it after 1 second, but it might fail due to network latency.

Rasa has a built-in retry mechanism for renewing the token.

If the token is not renewed successfully it will be considered expired and Rasa will not be able to access the secrets. You will need to create a new renewable token and restart Rasa with new token.

### Authentication

Rasa can authenticate to Vault through [Token authentication](https://developer.hashicorp.com/vault/docs/auth/token).

Both `expiring` and `non-expiring` (so called, root tokens) tokens are supported. Rasa will automatically renew the token if it is expiring.

### How to configure access to Vault

Access to Vault secrets manager can be configured with environment variables and through `endpoints.yml` configuration file.

Environment variables and `endpoints.yml` configuration file are merged together and **the values from the environment variables take precedence**.

New in 3.7

Vault namespaces can be used to isolate secrets. You can configure a namespace with the `VAULT_NAMESPACE` environment variable or the `namespace` key in secrets_manager section of the `endpoints.yml` file. To learn more about namespaces, check out the [Vault namespaces docs](https://developer.hashicorp.com/vault/docs/enterprise/namespaces).

The following environment variables are available:

| Environment Variable | Description | Default |
| --- | --- | --- |
| `SECRET_MANAGER` | **Required**. The secrets manager to use. _Currently only "vault" is supported_ | `vault` |
| `VAULT_HOST` | **Required**. The address of the vault server |  |
| `VAULT_TOKEN` | **Required**. token to authenticate to the vault server |  |
| `VAULT_RASA_SECRETS_PATH` | Path to the secrets in the vault server | `rasa-secrets` |
| `VAULT_TRANSIT_MOUNT_POINT` | If transit secrets engine is enabled, set this to mount point of the transit engine |  |
| `VAULT_NAMESPACE` | If namespaces are used, set this to the path of the namespace |  |

To configure the Vault secrets manager, you can fill the following section in `endpoints.yml` file:

```yaml
secrets_manager:
    type: vault # required - the secrets manager to use
    token: <token> # required - token to authenticate to the vault server
    url: "http://localhost:1234" # required - the address of the vault server
    secrets_path: rasa-secrets  # path to the secrets in the vault server if not set it defaults to `rasa-secrets`
    transit_mount_point: transit # if transit secrets engine is enabled, set this to mount point of the transit engine
    namespace: my-namespace # if namespaces are used, set this to the path of the namespace
```

#### Store access credentials in environment variables

A simple example on how to combine environment variables and `endpoints.yml` configuration file would be to store access token in the environment variable and the rest of the configuration in the `endpoints.yml` file.

```bash
# environment variables
VAULT_TOKEN=<token used to authenticate to Vault>
```

```yaml
secrets_manager:
    type: vault
    url: "http://localhost:1234"
    secrets_path: rasa-secrets  # if not set it defaults to `rasa-secrets`
    transit_mount_point: transit # if you have enabled transit secrets engine, and you want to use it
    namespace: my-namespace # if namespaces are used, set this to the path of the namespace
```

### How to configure Tracker Store with Vault Secrets Manager

1. Configure Rasa to access the Vault instance

Checkout the [How to configure access to Vault](/content/docs/reference/integrations/secrets-managers/#how-to-configure-access-to-vault/index.html) section for more details.

2. Configure Rasa to use the Vault secrets manager to fetch credentials for the tracker store

```yaml
tracker_store:
         type: SQL
         url: localhost:5432
         username:
               source: secrets_manager.vault
               secret_key: sql_store_username
         password:
               source: secrets_manager.vault
               secret_key: sql_store_password
```
