Requesting access
You start a request from the Break Glass page in your vendor portal. Pick the appliance and the one resource you need to reach, then submit:| You specify | Notes |
|---|---|
| Resource | The single resource the session targets (a cluster, a database, a service). One session reaches one resource. |
| Reason | Free-text justification. Shown to your customer at approval time and recorded in the audit trail. |
| Duration | How long you need. This bounds the session and the lifetime of any credential minted for it, measured from when the session becomes active. |
| Credential source | How the credential is produced for this resource: minted by the appliance controller, minted by an approved operational command, or supplied out of band. Offered only where more than one applies. |
The requested duration is the window of usable access, and it begins when
the session goes Active (after your customer approves), not at
submission. Time spent waiting for your customer to approve does not count
against the duration.
Session states
The happy path is request, approve, assemble, use, expire. A few terminal states cover the ways a session can stop early.| State | What it means |
|---|---|
| Pending | The request exists and is waiting on your customer’s decision. You can withdraw it; it also auto-expires if your customer never acts within the request window. |
| Activating | Your customer approved. Break glass is assembling the session: minting the credential where break glass supplies one, and (for a private target) bringing the temporary network path online. |
| Active | Every plane the session needs is ready. You can use the resource. The session carries an expiry derived from the approved duration. |
| Ended | The session finished. The temporary credential and any temporary network path have been removed. |
| State | What happened |
|---|---|
| Rejected | Your customer declined the request at review. A rejection can carry a reason back to you. |
| Cancelled | You withdrew the request before your customer acted. |
| Failed | The session couldn’t be fully assembled or torn down (for example, a temporary tunnel never came online). Break glass fails closed: a session that can’t be assembled does not go active. |
What your customer sees
When you submit a request, your customer is sent (via your existing notification channel) a unique support-portal link. Opening it shows the exact request: which resource, the privilege being requested, your reason, and the duration. Your customer picks Approve or Reject. Approving means signing the request. Your customer signs with a private key that lives in their own environment and never travels to your control plane; the appliance controller running in their account verifies that signature against a public key only your customer controls before it mints anything.This is the same signing keypair your customer uses to approve
operations commands, so if they’ve used
operations, break glass approvals work immediately. See
operations security for how the
keypair is generated, stored, and pinned.
Using the session
Once the session is Active, break glass delivers what the operator needs to connect:- Kubernetes: a ready-to-use kubeconfig for the session. It carries
the minted, short-lived credential and the cluster endpoint; point
kubectlat it and work normally. - Database and other resources: the connection details produced by the approved credential source (for example, a short-lived database login).
- Out-of-band sessions: break glass delivers the network path so the otherwise-private endpoint becomes reachable, and the operator authenticates with the credential they already hold. Break glass delivers no credential in this case.
A minted credential’s lifetime can be capped below the approved duration
by your customer’s own environment (for example, a Kubernetes cluster’s
maximum service-account token lifetime). If that cap is shorter than your
session, the credential can expire mid-session and is not re-minted
automatically; request a fresh session if you need more time.
Expiry, teardown, and revocation
Access ends when the session ends, and it ends two ways, both bounded:- Self-expiry. A minted credential is short-lived, with a lifetime tied to the approved duration. Even if teardown is interrupted, the credential stops working on its own clock.
- Explicit teardown. At session end, break glass removes what it created: it deletes any minted identity (revoking the credential) and tears down any temporary network path. For an out-of-band session there is no minted credential to revoke, so only the network path is removed. Confirmed teardown is recorded.
Related
- How break glass works: the two-plane model and where this flow fits.
- Network providers: how the network path for a private target is configured.
- Security model: the approval, least-privilege, and audit guarantees behind this lifecycle.