Join our Newsletter — 33% off our NHI Course

Who is accountable for keeping authorization approvals current when policy changes after a request is submitted?

The decision point remains authoritative, so the caller must re evaluate the request with the approval as an input rather than treating the approval as a permanent grant. That means the policy owner is accountable for the rule, and the enforcement point is accountable for using the latest decision instead of replaying an old approval.

Why This Matters for Security Teams

When policy changes after a request is submitted, the real risk is not the approval itself but stale authorization logic being treated as permanent. In NHI and agentic environments, approvals are only valid in the context in which they were made. If the decision point does not re-evaluate the request against current policy, a previously acceptable action can become an unbounded privilege path.

This is why current guidance in NIST Cybersecurity Framework 2.0 and the NHI lifecycle view in Ultimate Guide to NHIs — Lifecycle Processes for Managing NHIs emphasizes continuous control, not one-time approval. The policy owner is accountable for the rule, but the enforcement point is accountable for using the latest decision before granting access.

NHIMG research shows that 71% of NHIs are not rotated within recommended time frames, which is a useful signal for the broader problem: identity decisions often outlive the conditions that justified them. In practice, many security teams discover stale approvals only after a policy exception has already been reused in production.

How It Works in Practice

The operational answer is to treat approval as an input to decisioning, not as a standing grant. The caller or enforcement point should re-check the request at execution time, using the latest policy, the current identity state, the resource being accessed, and any expiry or context changes. That aligns with the direction set by NIST SP 800-53 Rev 5 Security and Privacy Controls, which expects access decisions to be governed by current control conditions rather than static memory of prior approvals.

For NHI workflows, this usually means:

  • Policy owner defines the rule, approval criteria, and expiry conditions.
  • Enforcement point validates the current policy before each sensitive action.
  • Workflow records the approval as evidence, not as an evergreen entitlement.
  • JIT access expires automatically or is revoked when the policy changes.
  • Any change to scope, risk, or environment triggers re-evaluation.

This model is especially important for service accounts, API keys, and agentic AI workloads because those identities can act after the original business context has shifted. The accountability model in Ultimate Guide to NHIs — Regulatory and Audit Perspectives reinforces that auditability depends on showing which policy was active at decision time, not just who approved something earlier.

Where this guidance breaks down is in environments that cache authorization decisions at multiple layers, because stale policy copies can survive longer than the approval workflow expects.

Common Variations and Edge Cases

Tighter approval controls often increase workflow overhead, requiring organisations to balance fast execution against the need to invalidate outdated decisions. That tradeoff becomes most visible in high-volume automation, delegated admin models, and long-running agent tasks where repeated re-approval can slow delivery if policy is too granular.

There is no universal standard for this yet, but current guidance suggests a few practical variations. Some teams require policy-change invalidation only for privileged actions, while others re-evaluate every request that touches secrets, production systems, or customer data. The stronger approach is to bind approval to a short-lived context token and make the enforcement point check policy freshness before each use. That is consistent with the broader NHI risk view in Top 10 NHI Issues, where excessive privilege and weak lifecycle controls often compound one another.

For autonomous agents, the challenge is sharper because the request can change between approval and execution. In those cases, re-approval should be triggered by any meaningful change in task scope, tool access, or target system. A stale approval is not a durable exception, it is just evidence that must be revalidated.

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, OWASP Agentic AI Top 10 and CSA MAESTRO address the attack and risk surface, while NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-01 Stale approvals are a common NHI governance failure mode.
OWASP Agentic AI Top 10 A1 Agents can act after context changes, making old approvals unsafe.
CSA MAESTRO GOV-02 MAESTRO stresses runtime control for autonomous workload decisions.
NIST AI RMF GOVERN AI governance needs accountability for changing decision conditions.
NIST CSF 2.0 PR.AC-4 Access permissions should reflect current authorization conditions.

Use current policy state in enforcement and remove access when conditions change.