DevSecOps SLSA L3+ Paved Path.
Trunk-based CI/CD with signed provenance, workload identity, SBOM-to-owner alerting, and policy-as-code admission. Aligned to NIST SSDF (SP 800-218), SLSA v1.0, EO 14028 / CISA Secure-by-Design, and APRA CPS 234.
What this architecture solves.
The paved path that a new service follows from zero to audited production. Every gate is encoded; every artefact is signed; every credential is short-lived; every CVE alert reaches the service owner without human routing.
An org with this paved path in place will score in “Managed” or “Optimising” on the DevSecOps Maturity diagnostic by construction.
Pipeline stages.
Short-lived branches, signed commits, ADR per material change.
Trunk-based development; PRs merged in hours, not weeks. IDE-level security feedback (Snyk Code, GitGuardian, JetBrains/VS Code plugins) catches secrets and obvious flaws before push. Signed commits enable the integrity chain from author to deploy.
Tamper-evident build hosts.
SLSA L3 prerequisite: build runs in a hermetic, ephemeral environment with no human-writable state. SAST + DAST + SCA run as required gates; KEV-listed CVEs break the build.
Provenance attached at build, not after.
CycloneDX or SPDX SBOM emitted per artefact. in-toto attestation + Cosign signature for SLSA L3 provenance. Attestations stored alongside the artefact in the registry.
Tags are immutable; digests are the deploy reference.
OCI-compliant registry with immutable tags. Deploys reference image digests, never floating tags. Old signed artefacts retained for audit replay.
Provenance verified, policy enforced, canary released.
OPA / Kyverno admission controller verifies signature + provenance + policy compliance before the workload runs. Workload identity (OIDC) gives the new pod its runtime credentials. Canary + auto-rollback on burn-rate (see Error Budget calculator).
The three planes that span the pipeline.
- Policy-as-code plane — OPA / Kyverno / Conftest / Sentinel, enforced pre-merge, pre-build and pre-deploy. The encoded version of your security and architecture principles.
- Identity plane — workload identity (OIDC, SPIFFE) replacing static credentials at every boundary. CI runners, build hosts, runtime pods all use short-lived tokens.
- Supply-chain plane — SBOM ⇒ graph (GUAC, Dependency-Track) ⇒ owner alerts via CISA KEV feed. Every CVE finds its service owner without human routing.
Sequencing for a 90‑day adoption.
- Weeks 1-3: One pipeline migrates to workload identity (OIDC). Document the pattern.
- Weeks 4-6: SBOM emission + Dependency-Track + owner-alert wiring. Same pipeline.
- Weeks 7-9: Cosign signing + admission verification. SLSA L2 → L3.
- Weeks 10-12: Policy-as-code gates for two non-negotiable rules (no-public-S3, signed-image-only). Backstage Scorecards visible to teams.