none Secret Store

As the name implies, the none secret store is a secret store that does nothing. It doesn’t store secrets, and if a runtime asks it for a secret, it throws an error. The none secret store is a nice default if you’re using a runtime like Docker that doesn’t need any secrets to run.

Configuration

pydantic model hydroplane.secret_stores.none.Settings
field secret_store_type: Literal['none'] = 'none'

Example Configuration Snippet

Here’s an example configuration snippet for the none secret store:

secret_store:
  secret_store_type: none