> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revolte.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Revolte Secrets

> Manage encrypted environment variables, scoping, injection, and rotation.

<div align="center">
  <img src="https://mintcdn.com/poddle-54594c3d/q0Rk3K5lGk3vHIWm/image-v2/deployments/secrets/secrets-1.png?fit=max&auto=format&n=q0Rk3K5lGk3vHIWm&q=85&s=6ba3005b71f1776fb6fd9139b9836ba9" width="200" data-path="image-v2/deployments/secrets/secrets-1.png" />
</div>

## Dashboard configuration

Manage your encrypted secrets directly through the Revolte dashboard:

<Steps>
  <Step title="Navigate to Application">
    Select the application you wish to configure from your workspace.
  </Step>

  <Step title="Access YAML Configuration">
    Click on the **YAML Configuration** tab in the top navigation bar.
  </Step>

  <Step title="Select Secrets">
    Choose **Secrets** from the left sidebar to view and manage your encrypted environment
    variables.
  </Step>

  <Step title="Manage Key-Value Pairs">
    Add new secrets by providing a key and value, or update existing references across your
    environments.
  </Step>
</Steps>

## Example configuration

<CodeBlock language="yaml" filename="revolte.yaml">
  {`revolte:
    version: '1.0'
    project: Demo-Project
    appName: demo-app
    env:
      production:
        branch: main
        codeReview: false
        services:
          rid_1:
            type: WEB_SERVICE
            name: web_service
            entryPoint: index.js
            properties:
              variables:
                JWT_SECRET: '#{JWT_SECRET}'
                JWT_TOKEN_EXPIRY: '#{JWT_TOKEN_EXPIRY}'
                GOOGLE_PLACES_API_KEY: '#{GOOGLE_PLACES_API_KEY}'`}
</CodeBlock>

## Related

* [Secrets Overview](/deployments/services/secrets/overview)
* [External Secrets](/deployments/services/secrets/external-secrets)
* [Web Services](/deployments/services/web-services)
* [Databases](/deployments/services/databases/overview)
* [Environment Settings](/yaml/environment-settings/services)
* [YAML Overview](/yaml/overview)
