docs/versioned_docs/version-0.17.2/api/secrets.mdx
import Tabs from '@theme/Tabs'; import TabItem from '@theme/TabItem';
Dagger has first-class support for "secrets", such as passwords, API keys, SSH keys and so on. These secrets can be securely used in Dagger functions without exposing them in plaintext logs, writing them into the filesystem of containers you're building, or inserting them into the cache.
Here is an example, which uses a secret in a Dagger function chain:
export API_TOKEN="guessme"
Secret arguments can be sourced from multiple providers: the host environment, the host filesystem, the result of host command execution, and external secret managers 1Password and Vault.