All lessons Leer en español

Security in depth · Unit 19 · Lesson 7 of 8

Reuse joins separate failure boundaries

Compare credential material and accepted authority instead of relying on account names.

3 minreadyShort lesson

Helpful before thisInitial access and credentials

See all lessons in this topic

After this lesson you can

  • Explain which proposed change actually reduces the coupling between two service credentials.

One idea. One situation. One reasoned decision.

How it works

When several services share a reusable credential, exposure in one place can affect the others that accept it. Distinct credentials or appropriately scoped identities reduce that coupling. The benefit depends on recovery practices, storage, and actual permission separation. Avoid interpreting different account names as independence when the same secret or broad underlying identity still connects them.

Shared credential → Multiple services → Coupled exposureShared credentialMultiple servicesCoupled exposure
Follow the relationship: Shared credential → Multiple services → Coupled exposure.

Read the supplied record

A fictional operations inventory uses labels instead of secret values:

Job Account label Reusable credential accepted
Daily summary report-reader C
Event publisher notice-editor C

The owner confirms C represents the same underlying secret, accepted by both services. The summary job needs only aggregate reading; the publisher needs only notice editing. A proposal changes the second account’s display name but leaves C and its accepted permissions unchanged.

That proposal does not reduce the shared failure boundary. A second proposal introduces distinct managed credentials and identities limited to each job’s purpose. To evaluate it, ask which services accept each credential, what each identity can do, and whether a broad shared fallback remains.

Even distinct credentials do not prove total independence: both may rely on one secret store, recovery account, or administrator. Record those dependencies separately. The goal is to reduce defined coupling while keeping both required jobs available, not to claim that a different username eliminates every shared risk.

The key distinction: Independence depends on what each service accepts, not labels alone.

Check yourself

No timer. No penalties. Read the explanation and try again whenever you like.

  1. Which proposal addresses the supplied credential coupling?

    Show the answer

    Correct answer: Use separately managed credentials and purpose-scoped identities, then verify each service’s accepted authority. This addresses both shared secret material and permissions; the claimed independence still requires evidence.

Try it

  • WriteWrite a two-part review: what renaming leaves unchanged, and which acceptance and permission records are needed for the separate-identity proposal.
References