//! Secret store capability.
use async_trait;
use crateError;
/// Default `SecretStore` impl that reads from the process environment.
/// Works out of the box with the k8s `envFrom: secretRef` wiring the
/// renderer emits — every required key is already an env var by the
/// time the container runs.
;