Phase 2 · PAM, IGA, JIT, and Zero Trust · Lesson 2 of 3
Article
·
15 min
·
+8 pts
The traditional model of access management gives people permissions and hopes they use them responsibly. Just-in-Time access and Zero Trust reject that model entirely. JIT says no one should have standing access to anything sensitive — you get access when you need it, for exactly as long as you need it, and it disappears automatically. Zero Trust says the network you are on is irrelevant — every request is authenticated and authorized based on identity, device, and context, regardless of whether you are in the office or on a coffee shop Wi-Fi.
Together, these two principles are reshaping how organizations think about access control. As a GRC Engineer, you need to understand them well enough to evaluate whether an organization's implementation is substantive or performative.
Just-in-Time access eliminates standing privileges. No one has permanent admin access. No one has always-on production database credentials. Instead, access is granted only when needed, for only as long as needed, and automatically revoked when the time window expires.
The shift from standing access to JIT access is the single most impactful change an organization can make to reduce the blast radius of a compromised credential. If an attacker steals a developer's credentials and that developer has permanent production admin access, the attacker has production admin access. If the developer has JIT access and the role is not currently activated, the stolen credential gives the attacker nothing beyond the developer's baseline (non-privileged) permissions.
There are four common patterns for implementing JIT access in enterprise environments:
Time-boxed role activation — A user requests activation of a privileged role for a specified duration. Azure PIM is the canonical example: an engineer activates the "Global Administrator" role for four hours, performs the necessary work, and the role deactivates automatically when the window expires. If they forget, the system handles it.
Approval-based access — Access requests go through an approval workflow before activation. A common implementation: a user requests production database access via a Slack bot, the request routes to their manager and the database owner, one or both approve, and the user receives temporary credentials valid for two hours. Tools like ConductorOne, Indent, and Abbey automate this flow.
Ephemeral credentials — Instead of granting access to an existing permanent credential, the system generates a short-lived credential on demand. AWS STS AssumeRole with a session duration of one hour, HashiCorp Vault dynamic database credentials that expire after 30 minutes, and temporary SSH certificates that are valid for a single session are all examples. The credential itself has an expiration built in — there is nothing to revoke because the credential stops working on its own.
Break-glass with alerts — Emergency access that bypasses normal approval workflows but triggers immediate notifications. When an engineer activates a break-glass account, the security team is paged, the session is recorded, and a post-incident review is mandatory. Break-glass accounts exist for scenarios where the approval workflow itself is unavailable (IdP outage, for example) or where waiting for approval would cause a customer-impacting incident to escalate.
JIT access is not free of friction. These are the real-world challenges you will encounter:
Quick check
A company implements JIT access for production database credentials using HashiCorp Vault dynamic secrets. Each credential is valid for 30 minutes and cannot be renewed. What is the primary security benefit compared to a shared, permanent database password stored in a wiki?
Zero Trust is an architectural approach defined in NIST SP 800-207 that eliminates the concept of a trusted network. The four core principles:
In the traditional model, the network perimeter was the trust boundary. If you were inside the corporate network (physically in the office or connected via VPN), you were trusted. Firewalls kept attackers out, and once inside, lateral movement was relatively unconstrained.
This model is broken. Cloud infrastructure, remote work, SaaS applications, and mobile devices mean that the "inside" of the network no longer exists as a meaningful security boundary. An employee accessing AWS from their home office, a contractor accessing Google Workspace from a personal laptop, and a CI/CD pipeline calling an API from a cloud VM are all "outside" the traditional perimeter.
In a Zero Trust model, identity replaces the network as the primary trust boundary. Every request — regardless of network location — must be authenticated (who is making this request?), authorized (does this identity have permission for this action?), and evaluated against a set of contextual signals before access is granted.
TRADITIONAL MODEL ZERO TRUST MODEL
───────────────── ─────────────────
┌─────────────────────────┐ Every request, regardless of origin:
│ Corporate Network │
│ ┌─────┐ ┌─────┐ │ ┌────────────┐
│ │ App │ │ DB │ │ │ Identity │──── Who are you?
│ └─────┘ └─────┘ │ │ verified │ (phishing-resistant MFA)
│ │ └─────┬──────┘
│ Inside = Trusted │ │
│ Free lateral movement │ ┌─────▼──────┐
└────────────┬────────────┘ │ Device │──── Is device managed
│ │ trust │ and compliant?
┌────┴────┐ └─────┬──────┘
│Firewall │ │
└────┬────┘ ┌─────▼──────┐
│ │ Context │──── Location, time,
Outside = Untrusted │ evaluated │ behavior, risk score
└─────┬──────┘
│
┌─────▼──────┐
│ Policy │──── Allow / Deny /
│ engine │ Step-up auth
└────────────┘Traditional perimeter security vs. Zero Trust: every request is evaluated
Strong authentication — Zero Trust requires phishing-resistant MFA. Passwords alone are insufficient, and even TOTP-based MFA is vulnerable to adversary-in-the-middle attacks. FIDO2 hardware keys or passkeys are the standard for Zero Trust environments.
Device trust — Authentication is not enough. The device making the request must also be evaluated. Is it a managed device enrolled in MDM? Is the OS patched? Is disk encryption enabled? Is endpoint detection running? A valid user on a compromised device is still a threat.
Continuous verification — Traditional authentication is a one-time event at login. Zero Trust evaluates access continuously throughout the session. If a device's compliance status changes mid-session, or if the user's behavior deviates from baseline, access can be stepped up (require re-authentication) or revoked in real time.
Microsegmentation — Instead of a flat network where any system can reach any other system, microsegmentation creates fine-grained network boundaries around individual workloads. Even if an attacker compromises one server, they cannot move laterally to other servers because each segment has its own access policies.
NIST SP 800-207 defines the reference architecture for Zero Trust with three core components:
Quick check
An organization requires VPN access to reach internal applications. An employee connects to the VPN from a personal, unmanaged laptop running an outdated OS with no endpoint protection. Under a Zero Trust model, what should happen?
GRC Engineer's focus
When assessing Zero Trust maturity, ask these five questions. First: Is phishing-resistant MFA enforced for all users, not just privileged accounts? Second: Is device trust evaluated as part of access decisions — not just whether the device exists, but whether it is managed, patched, and compliant? Third: Are access decisions context-aware — do they consider location, time, behavior, and risk score, or is it a simple binary authenticated/not-authenticated? Fourth: Is microsegmentation implemented — can a compromised workload reach other workloads freely, or are lateral movement paths restricted? Fifth: Is access continuously verified during sessions, or is authentication a one-time event at login? An organization that answers "yes" to all five has a mature Zero Trust implementation. Most organizations are somewhere in the middle, and your job is to identify the gaps and prioritize the roadmap.
JIT access and Zero Trust are the direction the industry is moving. Standing access is being replaced by time-bounded, approval-gated access that expires automatically. Network-perimeter trust is being replaced by identity-centric, context-aware access decisions that evaluate every request independently.
In the next exercise, you will design an access review program and JIT access workflow for a real-world scenario — putting the PAM, IGA, JIT, and Zero Trust concepts from these two lessons into practice.