Subscribe to the Non-Human & AI Identity Journal

Secrets Platform

A system that stores, brokers, or controls access to credentials, tokens, certificates, and keys. In practice, it is part storage, part policy engine, and part access broker, which means failures in authentication or entitlement design can expose far more than a single secret.

Expanded Definition

A secrets platform is the control plane that stores credentials, issues short-lived access where possible, and governs who or what can retrieve secrets such as API keys, certificates, and tokens. In NHI security, it sits between identity policy and runtime consumption, so it is more than a vault and less than a full identity system. Its real value is not only storing secrets safely, but also enforcing retrieval rules, rotation workflows, auditability, and blast-radius reduction for non-human identities.

Definitions vary across vendors, especially when a platform also claims workload identity federation, certificate lifecycle management, or application configuration delivery. NHI Management Group treats those capabilities as adjacent, not identical. For practical guidance, the most useful comparison is with OWASP Non-Human Identity Top 10, which frames secret handling failures as a core NHI risk rather than a standalone storage problem. A secrets platform becomes effective only when access is tied to workload identity, policy, and revocation, not just static password management.

The most common misapplication is treating a secrets platform as a passive repository, which occurs when teams centralise storage but leave broad read access, long-lived tokens, and unmanaged service accounts in place.

Examples and Use Cases

Implementing a secrets platform rigorously often introduces operational friction, requiring organisations to weigh developer speed against tighter approval, rotation, and audit controls.

  • CI/CD pipelines pull build-time tokens from a brokered secrets service instead of embedding them in repository variables, reducing the exposure pattern highlighted in the CI/CD pipeline exploitation case study.
  • Microservices fetch short-lived database credentials at startup, then renew them on a schedule rather than storing a static password in image layers or environment files.
  • Certificate-based workloads use the platform to request and rotate TLS certs, with policy enforcing issuance only to approved service identities and namespaces.
  • Teams adopt the platform after reading the Guide to the Secret Sprawl Challenge, using it to consolidate scattered tokens from code, chat, and ticketing systems.
  • Security teams map platform policy to the OWASP Non-Human Identity Top 10 to keep retrieval rights, rotation, and revocation aligned with workload identity risk.

These use cases matter most where secrets are consumed automatically by software rather than by humans at a login prompt, because the access path must be machine-fast without becoming machine-permissive.

Why It Matters in NHI Security

Secrets platforms matter because NHI compromises rarely start with a dramatic break-in. They often begin with leaked credentials, overbroad retrieval rights, or stale tokens that remain valid long after the original workload has changed. NHIMG research shows that 64% of valid secrets leaked in 2022 are still valid and exploitable today, which means detection without revocation leaves the attacker with an open door. That is why a secrets platform must be paired with lifecycle controls, not merely central storage.

This is especially important in AI and automation stacks, where agentic systems can request secrets at runtime and multiply the impact of a single entitlement mistake. The 2026 State of Secrets Sprawl 2026 shows how quickly exposure grows when secrets are hardcoded, duplicated, or left in developer tooling. The same pattern appears in breach writeups such as the Shai Hulud npm malware campaign, where credentials became the practical path from initial compromise to broader abuse. Organisations typically encounter the operational necessity of a secrets platform only after a token leak, at which point access control, rotation, and forensic traceability become operationally unavoidable to address.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST CSF 2.0 and NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-02 Covers secret sprawl, retrieval, and lifecycle failures for non-human identities.
NIST CSF 2.0 PR.AA-01 Identity proofing and access control support secure machine credential retrieval.
NIST Zero Trust (SP 800-207) SC-7 Zero trust principles require policy-based access to secrets instead of implicit trust.

Centralize secrets access, enforce least privilege, and automate rotation and revocation.