# Use an External Service

You may want to refer to an external service rather than the small-scale services running in the cluster from a reference deployment.

Examples include:

* PostgreSQL
* Kafka

{% hint style="danger" %}
**Warning**

**CRITICAL SECURITY REQUIREMENT**

**NEVER commit files containing secrets such as `.env` or `JWT`** **to version control.** These files must be managed securely.

As part of updating the inputs for your deployment:

1. **Review** the template secret files

2. **Set strong secrets** for the values, such as strong passwords

3. **Store the secret securely** outside your repository using one of these methods:
   * Cloud secrets management service
   * Enterprise secrets vault solution
   * Kubernetes Secrets with encryption at rest
   * Secure file system with restricted access (development only)

4. **Configure your deployment** to retrieve credentials from your secure storage at runtime

5. **Add the secrets files to your** **`.gitignore`** **file immediately**
   {% endhint %}

6. You should create your secret values in a secure location and reflect them in Kubernetes Secrets.

7. The name of the secret should be the one already used by the respective deployment, e.g. **`ess-webid-postgres-credentials`** for the WebID Service database

8. Continue with the rest of the [Applying Your Customizations](/ess/2.3/installation/customize-configurations.md) procedure.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.inrupt.com/ess/2.3/installation/customize-configurations/general/use-an-external-service.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
