← Back

2026-08-28

The Delegated Authority Problem: Why BES Pipeline Access Controls Are an Audit Finding Waiting to Happen

Every private pension (BES) pipeline I've built or inherited in the last decade has the same architectural sin: the access control layer was designed once, against the org chart in place at build time, and then quietly diverged from reality for the next five years. Nobody logs the divergence. Nobody re-attests it. And when the pipeline feeds three regulatory streams simultaneously — EGM, FATCA, and CRS — the divergence stops being an IT hygiene issue and becomes a signed-submission problem.

This is the delegated authority problem. And it is, without exception, an audit finding waiting to happen.

The Build-Time Snapshot Fallacy

When a BES pipeline goes into production, someone writes an access matrix. It usually looks reasonable on day one:

Then day 400 arrives. The senior data engineer moved to the fraud team but kept their AD group. The ops team lead's role was split into two, neither of which formally inherited the execute right — but both people still have it because the group membership was never cleaned. The finance controller retired; her successor was added to a broader "finance-all" group that happens to include the same access plus write on three other systems. Compliance restructured and the FATCA sign-off moved from one officer to another, but the old officer's account is still active because he's still handling CRS.

None of this is malicious. None of it triggers an alert. And none of it appears in the pipeline documentation, which still reflects day one.

Why EGM, FATCA, and CRS Make This Worse

A pipeline that only fed EGM would already have this problem. What makes the BES case genuinely dangerous is that the same underlying participant and contribution tables feed three regulators with three different scopes:

One dataset. Three signatories. Three different definitions of "authorized to touch this record." And in practice, one AD group that grants write on the participant table to anyone who was ever on the BES ops rotation.

When the FATCA submission goes out and the auditor later finds that the US indicia flag on a specific account was updated by a batch run on a Tuesday in March, the question is not "was the pipeline correct." The question is: who ran that batch, under whose authority, and did that authority legitimately extend to modifying FATCA-relevant fields on that date?

I have never seen a BES pipeline that can answer that question cleanly without a week of forensic work.

The Segregation That Never Happened

Segregation of duties in BES pipelines usually exists on paper as a matrix between roles. But roles are not the enforcement layer — group memberships are. And group memberships get granted for reasons that have nothing to do with the SoD matrix:

Each of these is a defensible decision in isolation. Together they mean that on the day of the discrepancy, twelve people and four service accounts could have run the batch, and the pipeline logs will tell you which account executed it but not which human was behind that account.

What the Audit Actually Asks

When the finding lands, the auditor does not ask about your CI/CD pipeline or your dbt tests. They ask:

  1. Who was authorized to modify data feeding the March 15 FATCA submission?
  2. Show me the access review that confirmed this list on or before March 15.
  3. Show me the log evidence that only those people (or their authorized service accounts) touched the relevant tables between the previous submission and March 15.
  4. Show me the change control for any access grants made during that window.

If your answer to (2) is the annual access recertification that happened six months ago against an org chart that has since changed, you have a finding. If your answer to (3) requires joining AD logs against pipeline execution logs against ticket system approvals in a spreadsheet you build ad hoc, you have a finding. If your answer to (4) is "we didn't grant any" but the AD audit log shows three group membership changes, you have a finding.

What Actually Works

After enough of these cycles, a few things earn their keep:

None of this is technically hard. It is organizationally hard, because it requires compliance, IT, and the data team to agree that access is a submission-scoped concern, not an infrastructure concern.

The Uncomfortable Part

The reason this problem persists is that nobody owns it until the auditor arrives. The data team owns the pipeline. IT owns AD. Compliance owns the submission. Access sits in the seam between all three, and seams are where audit findings breed.

If you own a BES pipeline today and you cannot, within thirty minutes, produce a signed list of who was authorized to modify FATCA-relevant fields on any given date in the last twelve months, the finding is already written. The auditor just hasn't visited yet.