Compare commits
34 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a4481e20de | |||
| 00762c1256 | |||
| 116f49ecb8 | |||
| 016068fd46 | |||
| 1eeee323c0 | |||
| 807b17d04b | |||
| 0f250d2bbd | |||
| 7585c828f0 | |||
| fc070ccb15 | |||
| be6dc7cff6 | |||
| 2682719f24 | |||
| 5079d07e64 | |||
| ec30f4ae56 | |||
| 2cd9ae150d | |||
| ae0cb589ab | |||
| b0a2728f59 | |||
| fca618916c | |||
| 7cccf989b1 | |||
| 6e41f09c6e | |||
| c4d966359f | |||
| 5365bb4e0a | |||
| 80d2a6cc6c | |||
| e74a8c2f5d | |||
| 5ebf7a62c8 | |||
| cd637808f5 | |||
| 481cfe760c | |||
| bee9d02f01 | |||
| 8118d6ee27 | |||
| e1be05287b | |||
| 58100c485e | |||
| 2bea048bb6 | |||
| c05ed7a26f | |||
| 136ec6abf3 | |||
| 2f0e69272a |
@@ -15,7 +15,7 @@ locked commitments and the v1.1 spike scope.
|
|||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
The platform is **four layers + six cross-cutting concerns**. The sixth
|
The platform is **four layers + six cross-cutting concerns**. The sixth
|
||||||
concern — the substrate abstraction (§12) — is first-class, not an
|
concern — the engine abstraction (§12) — is first-class, not an
|
||||||
implementation detail. The vision's "Two Consumer Surfaces, One Platform"
|
implementation detail. The vision's "Two Consumer Surfaces, One Platform"
|
||||||
tenet binds everything: L3A and L3B converge on the same contract schema,
|
tenet binds everything: L3A and L3B converge on the same contract schema,
|
||||||
the same policy envelope, and the same evidence stream.
|
the same policy envelope, and the same evidence stream.
|
||||||
@@ -53,7 +53,7 @@ the same policy envelope, and the same evidence stream.
|
|||||||
## Layers
|
## Layers
|
||||||
|
|
||||||
### Layer 1 — Foundational Primitives
|
### Layer 1 — Foundational Primitives
|
||||||
Single-purpose, **substrate-agnostic** primitive modules. L1 modules do
|
Single-purpose, **engine-agnostic** primitive modules. L1 modules do
|
||||||
not compose with other L1s; L1 takes its environment as input. The L1
|
not compose with other L1s; L1 takes its environment as input. The L1
|
||||||
interface is defined against the **Target Stack IR**, not against Terraform
|
interface is defined against the **Target Stack IR**, not against Terraform
|
||||||
directly (the IR is shaped to round-trip to Terraform in v1, per §12.1).
|
directly (the IR is shaped to round-trip to Terraform in v1, per §12.1).
|
||||||
@@ -181,15 +181,15 @@ platform does not run the skill. Stateless agents, all state in the
|
|||||||
platform. Skills are reviewed for sensitive data before release (Infra &
|
platform. Skills are reviewed for sensitive data before release (Infra &
|
||||||
Ops owns the review; it is the mandatory release gate).
|
Ops owns the review; it is the mandatory release gate).
|
||||||
|
|
||||||
### Substrate execution (§12) — the binding constraint
|
### Angine execution (§12) — the binding constraint
|
||||||
**Target Stack IR** (locked): a substrate-neutral description of resources
|
**Target Stack IR** (locked): a engine-neutral description of resources
|
||||||
(typed inputs/outputs/NFRs), relationships (single parent per child),
|
(typed inputs/outputs/NFRs), relationships (single parent per child),
|
||||||
composition (tree, max depth 5), and policy hooks. The L1 registry, L2
|
composition (tree, max depth 5), and policy hooks. The L1 registry, L2
|
||||||
thin-composition tree, contract YML, and PolicyCheckResult schema are all
|
thin-composition tree, contract YML, and PolicyCheckResult schema are all
|
||||||
defined against the IR — none against any specific substrate.
|
defined against the IR — none against any specific engine.
|
||||||
|
|
||||||
**Substrate adapters** are the only substrate-specific code. An adapter
|
**Angine adapters** are the only engine-specific code. An adapter
|
||||||
compiles the IR into a substrate execution plan. **v1 ships exactly one
|
compiles the IR into a engine execution plan. **v1 ships exactly one
|
||||||
adapter: the Terraform adapter.** v2+ may add OpenTofu, Pulumi, K8s CRDs
|
adapter: the Terraform adapter.** v2+ may add OpenTofu, Pulumi, K8s CRDs
|
||||||
without architectural change.
|
without architectural change.
|
||||||
|
|
||||||
@@ -335,20 +335,20 @@ extends the *implementation*, not the design.
|
|||||||
ECS Fargate service serving HTTP 200 → evidence event to the DynamoDB
|
ECS Fargate service serving HTTP 200 → evidence event to the DynamoDB
|
||||||
outbox → acdl-evidence timeline.
|
outbox → acdl-evidence timeline.
|
||||||
|
|
||||||
### Substrate extension (ECS Fargate)
|
### Angine extension (ECS Fargate)
|
||||||
|
|
||||||
The Terraform adapter (§12) remains the only substrate-specific code. v1.2
|
The Terraform adapter (§12) remains the only engine-specific code. v1.2
|
||||||
expands the adapter `TYPE_MAP` to cover the six new ECS-shaped IR resource
|
expands the adapter `TYPE_MAP` to cover the six new ECS-shaped IR resource
|
||||||
types. The L1 interface shape (IR-typed inputs/outputs/NFRs, registered in
|
types. The L1 interface shape (IR-typed inputs/outputs/NFRs, registered in
|
||||||
`modules-ir/registry.json`) is unchanged — only the set of registered L1s
|
`modules-ir/registry.json`) is unchanged — only the set of registered L1s
|
||||||
grows. The IR commitments (REQ-28) continue to hold: `modules-ir/`,
|
grows. The IR commitments (REQ-28) continue to hold: `modules-ir/`,
|
||||||
`schemas/`, `contracts/`, `core/confidence_signal.py`,
|
`schemas/`, `contracts/`, `core/confidence_signal.py`,
|
||||||
`core/contract_resolver.py`, `core/outbox_writer.py`
|
`core/contract_resolver.py`, `core/outbox_writer.py`
|
||||||
remain substrate-agnostic.
|
remain engine-agnostic.
|
||||||
|
|
||||||
### `terraform apply` (dev only)
|
### `terraform apply` (dev only)
|
||||||
|
|
||||||
v1.2 lifts the substrate execution from `plan` to `apply` for the `dev`
|
v1.2 lifts the engine execution from `plan` to `apply` for the `dev`
|
||||||
environment only. Dev is autonomous per §10 (confidence ≥ 0.50, no HITL).
|
environment only. Dev is autonomous per §10 (confidence ≥ 0.50, no HITL).
|
||||||
`apply` for qa/prod/dr remains HITL-gated and out of scope for v1.2. The
|
`apply` for qa/prod/dr remains HITL-gated and out of scope for v1.2. The
|
||||||
apply result (resources created, plan diff) is captured in the evidence
|
apply result (resources created, plan diff) is captured in the evidence
|
||||||
@@ -443,4 +443,71 @@ terraform state directory, and publishes the uptime URL via PR comment.
|
|||||||
|
|
||||||
The platform Lambda (`contract_ingestor.py`) reads `GITHUB_API_BASE` env
|
The platform Lambda (`contract_ingestor.py`) reads `GITHUB_API_BASE` env
|
||||||
for forge-agnostic API URLs. GitHub uses `/search/issues`; Gitea uses
|
for forge-agnostic API URLs. GitHub uses `/search/issues`; Gitea uses
|
||||||
`/repos/{owner}/{repo}/issues`. Detection via `/api/v1` in the base URL.
|
`/repos/{owner}/{repo}/issues`. Detection via `/api/v1` in the base URL.
|
||||||
|
|
||||||
|
## v1.9 Addendum (2026-07-23)
|
||||||
|
|
||||||
|
### New Components
|
||||||
|
|
||||||
|
- **`core/contract_resolver.py` interpolation** (D-081): the resolver
|
||||||
|
now expands `${env.<field>}` + `${contract.<field>}` tokens
|
||||||
|
post-schema-validation, pre-IR-resolution. The env context is the
|
||||||
|
loaded environment onboarding JSON (`core/environments/<name>.json`,
|
||||||
|
schema `schemas/environment.schema.json`). The resolver's
|
||||||
|
`child_input_map` routes L2 wires to the sub-resource that declares the
|
||||||
|
input (P1-1 — `desired_count` → `aws:ecs:service`, `family` →
|
||||||
|
`aws:ecs:task_definition`).
|
||||||
|
- **`core/environment_check.py` `load()`** (REQ-104): loads + returns the
|
||||||
|
parsed environment JSON; emits a stderr warning for placeholder
|
||||||
|
`account_id` when env != dev.
|
||||||
|
- **`core/hitl_gates.py`** (REQ-108, D-084): the HITL pre-execution
|
||||||
|
attestation gate. Records the approver identity to the DynamoDB outbox
|
||||||
|
(`approver_qa`/`approver_prod`/`approver_dr`), runs the separation-of-
|
||||||
|
duties check on prod, invokes the attestation matrix, returns
|
||||||
|
`(ok, reason)`. Dev skips (autonomous). `run_platform.sh` calls
|
||||||
|
`attest` before apply for qa/prod/dr.
|
||||||
|
- **`core/attestation_matrix.py`** (REQ-109, D-084): the 8-concern
|
||||||
|
attestation matrix from `hitl_matrix_design.md` §10.4. Offline-testable
|
||||||
|
concerns (contract NFRs, schema validity, policy pass) run for real;
|
||||||
|
operator-supplied concerns accept signed evidence artifacts validated
|
||||||
|
for freshness + schema. Signature verification skips when
|
||||||
|
`ACDL_ATTESTATION_SIGNING_KEY_ID` is unset (D-089).
|
||||||
|
- **`core/separation_of_duties.py` `route_halt_artifact`** (REQ-107):
|
||||||
|
real SNS publish (`acdl-sod-halt` topic, ARN from
|
||||||
|
`ACDL_SOD_HALT_TOPIC_ARN`) + outbox fallback
|
||||||
|
(`SEPARATION_OF_DUTIES_VIOLATION` event). The SNS topic is defined in
|
||||||
|
`terraform/platform/main.tf`.
|
||||||
|
- **`adapters/wiz/wiz_adapter.py` `WizClient`** (REQ-110): real GraphQL
|
||||||
|
API client (`<WIZ_API_URL>/graphql`, Bearer auth, pagination via
|
||||||
|
`pageInfo.hasNextPage`). `fetch_and_adapt` translates issues →
|
||||||
|
`PolicyCheckResult`. Graceful degrade when unconfigured.
|
||||||
|
- **`adapters/kyverno/kyverno_adapter.py`** (REQ-111): fleshed-out
|
||||||
|
`PolicyReport` → `PolicyCheckResult` mapping (pass/fail/skip/warn +
|
||||||
|
severity + skip-with-reason + resource construction). Inactive-for-TF
|
||||||
|
guard preserved.
|
||||||
|
|
||||||
|
### Per-Environment Promotion (D-082)
|
||||||
|
|
||||||
|
The deploy workflow (`.github/workflows/deploy.yml` +
|
||||||
|
`.gitea/workflows/deploy.yml`, byte-identical) declares an `environment`
|
||||||
|
`workflow_call` input. When non-empty, `run_platform.sh --environment
|
||||||
|
<name>` overrides the contract's `environment` field before schema
|
||||||
|
validation (D-088). One CI job per environment; promotion = running the
|
||||||
|
matching job, no `environment:` field editing. Per-env contract files
|
||||||
|
(`contracts/<module>.<env>.yaml`) use interpolation for env-specific
|
||||||
|
values.
|
||||||
|
|
||||||
|
### Adapter Parameterization (P1-1, D-085)
|
||||||
|
|
||||||
|
The adapter (`adapters/terraform/adapter.py`) reads ECS/ALB/VPC defaults
|
||||||
|
from L1 `interface.json` inputs (`desired_count`, `launch_type`,
|
||||||
|
`family`, `target_type`, `load_balancer_type`, `name`). The adapter is a
|
||||||
|
thin translator; the `child_input_map` routes wires to the declaring
|
||||||
|
sub-resource.
|
||||||
|
|
||||||
|
### Deferred (D-083)
|
||||||
|
|
||||||
|
S3 Object Lock + JWS detached signatures + async worker + DLQ + daily
|
||||||
|
checkpoints (audit ledger build-out) — deferred to a future milestone.
|
||||||
|
The hash-chain + DynamoDB-outbox path remains the v1.9 production audit
|
||||||
|
record.
|
||||||
@@ -1,43 +1,63 @@
|
|||||||
# Phase 18 — Audit (v1.3.2)
|
# ACDL v1.9 — Audit Report
|
||||||
|
|
||||||
**Date:** 2026-07-22
|
> Audit date: 2026-07-23. Auditor: ci-debugger. Milestone: v1.9. Result: PASS.
|
||||||
**Phase:** 18 — testing-and-cicd-pipelines
|
|
||||||
**Milestone:** v1.3 (active, NFR)
|
|
||||||
**Tag:** v1.3.2
|
|
||||||
|
|
||||||
## 1. Reconstruction Test
|
## Step 1: Reconstruction Test
|
||||||
|
|
||||||
Git log (2 commits for phase 18) matches `.ciagent/` files:
|
- 16 v1.9 commits with `---ci---` blocks (specify → clarify → research →
|
||||||
|
plan → execute ×4 phases → verify/complete → review-fix).
|
||||||
| Commit | Status | .ciagent match |
|
- Reconstructed state: milestone v1.9, phase 43, status complete.
|
||||||
|--------|--------|----------------|
|
- Pipeline stages traversed: specify → clarify → research → plan → execute → verify → complete.
|
||||||
| 1598c54 | verify | VERIFY.md updated, ROADMAP/REQUIREMENTS marked complete |
|
- Decisions D-080..D-089 all present in git log + `.ciagent/` files.
|
||||||
| (specify was done in prior commit ae86a29 for phase 17) | | |
|
- config.json (v1.9 complete), PROJECT.md (v1.9 complete), REQUIREMENTS.md
|
||||||
|
(v1.9 complete, 12 reqs), ROADMAP.md (v1.9 complete, phases 39–43),
|
||||||
ROADMAP.md has Phase 18 with `Status: complete (v1.3.2)`.
|
REVIEW.md (READY TO SHIP), PERSONAS.md (v1.9), VERIFY.md, AUDIT.md.
|
||||||
REQUIREMENTS.md has REQ-39, REQ-40, REQ-41, REQ-42 marked `complete (v1.3.2)`.
|
|
||||||
VERIFY.md has `VERIFY PASS` verdict.
|
|
||||||
Tag `v1.3.2` exists. **PASS.**
|
|
||||||
|
|
||||||
## 2. File Discipline
|
|
||||||
|
|
||||||
Working tree clean. All new files present (pyproject.toml,
|
|
||||||
requirements-test.txt, 7 test files, 2 workflow YAMLs). Modified files
|
|
||||||
(run_platform.sh, README.md, terraform/spike/terraform.tf) are expected.
|
|
||||||
**PASS.**
|
**PASS.**
|
||||||
|
|
||||||
## 3. Branch Hygiene
|
## Step 2: File Discipline
|
||||||
|
|
||||||
On `main`, no stale phase branches. `milestone/v1.0-initial` is
|
- `.ciagent/config.json`: valid JSON; mode, projects[] present. **PASS.**
|
||||||
historical. **PASS.**
|
- `.ciagent/PROJECT.md`: Vision/Core Value (≡ "What This Is"), Key
|
||||||
|
Decisions (v1.9 D-080..D-086), Requirements, Constraints, per-milestone
|
||||||
|
Objective sections (≡ "Milestones") present. Section names follow the
|
||||||
|
v1.0 established conventions (not the generic audit template). **PASS.**
|
||||||
|
- `.ciagent/ROADMAP.md`: phases 39–43 present; all marked complete.
|
||||||
|
**PASS.**
|
||||||
|
- `.ciagent/REQUIREMENTS.md`: v1.9 traceability table complete (12/12
|
||||||
|
REQ-100..111 marked `complete (v1.9.0)`). **PASS.**
|
||||||
|
- `.ciagent/ARCHITECTURE.md`: **fixed during audit** — v1.9 addendum
|
||||||
|
added covering all new components (contract_resolver interpolation,
|
||||||
|
environment_check.load, hitl_gates, attestation_matrix,
|
||||||
|
separation_of_duties.route_halt_artifact, WizClient, kyverno_adapter,
|
||||||
|
per-environment promotion, adapter parameterization, deferred D-083).
|
||||||
|
All 9 v1.9 code components now referenced. **PASS (after fix).**
|
||||||
|
|
||||||
## 4. Commit Discipline
|
## Step 3: Branch Hygiene
|
||||||
|
|
||||||
All phase-18 commits have `---ci---` blocks with correct closing
|
- Local: `main` only. Remote: `origin/main` only.
|
||||||
`---/ci---` tag. Tag `v1.3.2` follows NFR patch versioning (v1.3.1 →
|
- No phase or milestone branches remain (all 5 v1.9 phase branches merged
|
||||||
v1.3.2). **PASS.**
|
+ pruned during the run/ship workflow).
|
||||||
|
- No orphan branches.
|
||||||
|
**PASS.**
|
||||||
|
|
||||||
## Verdict
|
## Step 4: Commit Discipline
|
||||||
|
|
||||||
**AUDIT CLEAN** — reconstruction, file discipline, branch hygiene, and
|
- 16/16 v1.9 commits have `---ci---` blocks with project/phase/milestone/
|
||||||
commit discipline all pass. No critical issues.
|
status fields.
|
||||||
|
- No stale implementation decisions (D-081..D-085, D-087..D-089 all have
|
||||||
|
code refs; D-080 + D-086 are process/meta decisions correctly living in
|
||||||
|
`.ciagent/` files).
|
||||||
|
- No unresolved v1.9 escalations (the 3 `audit(...)` commits in history
|
||||||
|
are from prior milestones v1.0/v1.6/v1.7).
|
||||||
|
**PASS.**
|
||||||
|
|
||||||
|
## Issues fixed during audit
|
||||||
|
|
||||||
|
1. **ARCHITECTURE.md missing v1.9 addendum** — the architecture doc had
|
||||||
|
no coverage of the v1.9 new components (hitl_gates, attestation_matrix,
|
||||||
|
interpolation, per-env promotion, adapter parameterization, Wiz/Kyverno
|
||||||
|
flesh-outs). Fixed: added a v1.9 addendum section covering all 9 new
|
||||||
|
code components + the per-env promotion model + the deferred D-083
|
||||||
|
items. Verified all 9 components now referenced.
|
||||||
|
|
||||||
|
## Audit result: PASS
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
---
|
---
|
||||||
project: acdl
|
project: acdl
|
||||||
milestone: v1.8
|
milestone: v1.9
|
||||||
generated_at: 2026-07-22
|
generated_at: 2026-07-23
|
||||||
generator: lead-developer
|
generator: lead-developer
|
||||||
verification_toolchain:
|
verification_toolchain:
|
||||||
typecheck: "terraform validate && python3 -m py_compile core/**/*.py && python3 -m jsonschema schemas/*.schema.json"
|
typecheck: "terraform validate && python3 -m py_compile core/**/*.py && python3 -m jsonschema schemas/*.schema.json"
|
||||||
@@ -16,7 +16,7 @@ verification_toolchain:
|
|||||||
ci-* agents read PERSONAS.md before running verification commands.
|
ci-* agents read PERSONAS.md before running verification commands.
|
||||||
---
|
---
|
||||||
|
|
||||||
# ACDL — Persona Roster (project-level, v1.8)
|
# ACDL — Persona Roster (project-level, v1.9)
|
||||||
|
|
||||||
## Active personas
|
## Active personas
|
||||||
|
|
||||||
@@ -43,9 +43,9 @@ verification_toolchain:
|
|||||||
- **Active:** true
|
- **Active:** true
|
||||||
- **Phase-specific:** false
|
- **Phase-specific:** false
|
||||||
- **Frameworks:** terraform, aws-iam, aws-s3, aws-dynamodb, aws-lambda, aws-cloudfront, aws-waf, aws-ssm, aws-secretsmanager, oidc, json-schema
|
- **Frameworks:** terraform, aws-iam, aws-s3, aws-dynamodb, aws-lambda, aws-cloudfront, aws-waf, aws-ssm, aws-secretsmanager, oidc, json-schema
|
||||||
- **Constraints:** ir-is-substrate-agnostic, adapter-is-only-substrate-specific-code, state-in-s3+dynamodb-single-region, oidc-only-no-long-lived-keys (waiver D-034 for bootstrap), terraform-plan-only-in-spike, cross-account-iam-scoped-via-abac
|
- **Constraints:** ir-is-engine-agnostic, adapter-is-only-engine-specific-code, state-in-s3+dynamodb-single-region, oidc-only-no-long-lived-keys (waiver D-034 for bootstrap), terraform-plan-only-in-spike, cross-account-iam-scoped-via-abac
|
||||||
- **Territory:** `adapters/terraform/**`, `modules/**` (l1 + l2 + registry.json + examples), `terraform/**` (state backend, provider config, platform infra), `modules/registry.json`
|
- **Territory:** `adapters/terraform/**`, `modules/**` (l1 + l2 + registry.json + examples), `terraform/**` (state backend, provider config, platform infra), `modules/registry.json`
|
||||||
- **Reason:** Owns the Target Stack IR, the L1/L2 IR-typed modules (incl. new cloudfront + waf + rds primitives), the Terraform adapter (TYPE_MAP expansion for cloudfront/waf/rds), the AWS OIDC bootstrap, the state backend, and the platform Terraform (Lambda + DynamoDB + KMS + Secrets Manager + Function URL). The IR is substrate-agnostic; the adapter is the only substrate-specific code (the binding constraint per §12).
|
- **Reason:** Owns the Target Stack IR, the L1/L2 IR-typed modules (incl. new cloudfront + waf + rds primitives), the Terraform adapter (TYPE_MAP expansion for cloudfront/waf/rds), the AWS OIDC bootstrap, the state backend, and the platform Terraform (Lambda + DynamoDB + KMS + Secrets Manager + Function URL). The IR is engine-agnostic; the adapter is the only engine-specific code (the binding constraint per §12).
|
||||||
|
|
||||||
### security-engineer (custom)
|
### security-engineer (custom)
|
||||||
- **Domain:** security
|
- **Domain:** security
|
||||||
@@ -56,14 +56,14 @@ verification_toolchain:
|
|||||||
- **Territory:** `core/hitl_matrix_design.md`, `core/audit_ledger_design.md`, `adapters/terraform/policy/**` (Checkov adapter + custom rules), `adapters/wiz/**` (Wiz adapter), `adapters/kyverno/**` (Kyverno adapter + sample policies), `core/separation_of_duties.py`, `schemas/tagging-standard.json`, `schemas/policy_check_result.schema.json` (engine enum)
|
- **Territory:** `core/hitl_matrix_design.md`, `core/audit_ledger_design.md`, `adapters/terraform/policy/**` (Checkov adapter + custom rules), `adapters/wiz/**` (Wiz adapter), `adapters/kyverno/**` (Kyverno adapter + sample policies), `core/separation_of_duties.py`, `schemas/tagging-standard.json`, `schemas/policy_check_result.schema.json` (engine enum)
|
||||||
- **Reason:** Owns the HITL matrix design, separation-of-duties, the audit ledger design, the Checkov→PolicyCheckResult adapter + the custom tagging rule (D-054, D-043 closure), the Wiz adapter (D-052), the Kyverno adapter (D-053), and the tagging standard. Enforces the "Safety is Computed, Not Assumed" + "Audit truth lives outside the repository" vision tenets.
|
- **Reason:** Owns the HITL matrix design, separation-of-duties, the audit ledger design, the Checkov→PolicyCheckResult adapter + the custom tagging rule (D-054, D-043 closure), the Wiz adapter (D-052), the Kyverno adapter (D-053), and the tagging standard. Enforces the "Safety is Computed, Not Assumed" + "Audit truth lives outside the repository" vision tenets.
|
||||||
|
|
||||||
### lambda-engineer (custom, v1.8)
|
### lambda-engineer (custom, v1.9)
|
||||||
- **Domain:** serverless
|
- **Domain:** serverless
|
||||||
- **Active:** true
|
- **Active:** true
|
||||||
- **Phase-specific:** true (reactivated for v1.8; removed after milestone COMPLETE)
|
- **Phase-specific:** true (reactivated for v1.9; removed after milestone COMPLETE)
|
||||||
- **Frameworks:** python, aws-lambda, boto3, dynamodb, aws-secretsmanager, github-api, gitea-api
|
- **Frameworks:** python, aws-lambda, boto3, dynamodb, aws-secretsmanager, aws-sns, github-api, gitea-api
|
||||||
- **Constraints:** lambda-is-stateless, dynamodb-is-the-state-store, secrets-from-secrets-manager-never-logged, idempotent-actions, cross-account-iam-via-abac, forge-agnostic-api-urls
|
- **Constraints:** lambda-is-stateless, dynamodb-is-the-state-store, secrets-from-secrets-manager-never-logged, idempotent-actions, cross-account-iam-via-abac, forge-agnostic-api-urls, sns-topic-arn-from-env
|
||||||
- **Territory:** `core/lambda/**` (contract_ingestor.py + handler), `terraform/platform/main.tf` (Lambda + Function URL + DynamoDB + KMS + Secrets Manager + IAM + acdl-change-requests table), `terraform/platform/consumer_invoke_policy.json`, `terraform/platform/variables.tf`
|
- **Territory:** `core/lambda/**` (contract_ingestor.py + handler), `terraform/platform/main.tf` (Lambda + Function URL + DynamoDB + KMS + Secrets Manager + IAM + acdl-change-requests table + acdl-sod-halt SNS topic), `terraform/platform/consumer_invoke_policy.json`, `terraform/platform/variables.tf`
|
||||||
- **Reason:** Reactivated for v1.8 Phase 29 (Terraform-rendered invoke policy), Phase 30 (forge-agnostic API URLs in contract_ingestor.py), Phase 34 (validate_change_request Lambda action + acdl-change-requests DynamoDB table). The Lambda is stateless; all state is in DynamoDB. Forge-agnostic API URLs (GitHub + Gitea) via GITHUB_API_BASE env var. Removed from the roster after milestone COMPLETE (the code persists, but the persona is no longer active).
|
- **Reason:** Reactivated for v1.9 Phase 42 (acdl-sod-halt SNS topic for `route_halt_artifact`, defined in `terraform/platform/main.tf`). The Lambda is stateless; all state is in DynamoDB. Forge-agnostic API URLs (GitHub + Gitea) via GITHUB_API_BASE env var. Removed from the roster after milestone COMPLETE (the code persists, but the persona is no longer active).
|
||||||
|
|
||||||
### frontend-engineer
|
### frontend-engineer
|
||||||
- **Domain:** frontend
|
- **Domain:** frontend
|
||||||
@@ -79,7 +79,7 @@ verification_toolchain:
|
|||||||
### infra-stub-engineer (custom, v1.0 only)
|
### infra-stub-engineer (custom, v1.0 only)
|
||||||
- **Domain:** backend
|
- **Domain:** backend
|
||||||
- **Active:** false
|
- **Active:** false
|
||||||
- **Reason:** Owned L1 stub modules (`modules/l1/**`) in the v1.0 demo. The demo is archived to `demo/` in Phase 06; real L1 modules (`modules-ir/l1/**`, now `modules/l1/**`) are owned by platform-engineer (substrate-agnostic IR + Terraform adapter). The stub engineer is no longer needed.
|
- **Reason:** Owned L1 stub modules (`modules/l1/**`) in the v1.0 demo. The demo is archived to `demo/` in Phase 06; real L1 modules (`modules-ir/l1/**`, now `modules/l1/**`) are owned by platform-engineer (engine-agnostic IR + Terraform adapter). The stub engineer is no longer needed.
|
||||||
- **Phase-specific:** false (was v1.0)
|
- **Phase-specific:** false (was v1.0)
|
||||||
- **Territory (would have been):** `demo/modules/l1/**`
|
- **Territory (would have been):** `demo/modules/l1/**`
|
||||||
|
|
||||||
@@ -107,24 +107,29 @@ verification_toolchain:
|
|||||||
| 36 schemas-adapters-pipelines-readmes | lead-developer (lead: 3 READMEs), backend-engineer (pipelines + schemas README content), platform-engineer (adapters README content) | security/lambda/frontend idle |
|
| 36 schemas-adapters-pipelines-readmes | lead-developer (lead: 3 READMEs), backend-engineer (pipelines + schemas README content), platform-engineer (adapters README content) | security/lambda/frontend idle |
|
||||||
| 37 verify | lead-developer (lead: 4-layer verification), all personas (review their territory) | — |
|
| 37 verify | lead-developer (lead: 4-layer verification), all personas (review their territory) | — |
|
||||||
| 38 review-audit-complete | lead-developer (lead: review + audit + milestone completion), all personas (review participation) | — |
|
| 38 review-audit-complete | lead-developer (lead: review + audit + milestone completion), all personas (review participation) | — |
|
||||||
|
| 39 design-doc-refresh-and-p1-1-parameterization | security-engineer (lead: hitl_matrix_design.md + audit_ledger_design.md refresh), platform-engineer (lead: P1-1 adapter defaults → L1 interface.json inputs), backend-engineer (contract_resolver.py + env schema adjacent review) | lambda/frontend idle |
|
||||||
|
| 40 contract-interpolation | backend-engineer (lead: _expand_vars in contract_resolver.py + environment.schema.json + sample contracts), platform-engineer (interface.json adjacent review) | security/lambda/frontend idle |
|
||||||
|
| 41 per-environment-ci-jobs | backend-engineer (lead: deploy.yml environment input + run_platform.sh --environment + per-env contracts + caller-workflow docs), security-engineer (HITL gate structure review) | platform/lambda/frontend idle |
|
||||||
|
| 42 stub-implementation | security-engineer (lead: route_halt_artifact SNS + hitl_gates.py + attestation_matrix.py + Wiz real client + Kyverno fleshed out), backend-engineer (run_platform.sh HITL gate wiring), lambda-engineer (acdl-sod-halt SNS topic in terraform/platform/main.tf) | platform/frontend idle |
|
||||||
|
| 43 verify-review-audit-complete | lead-developer (lead: 4-layer verify + review + audit + milestone completion), all personas (review participation) | — |
|
||||||
|
|
||||||
## Domain priority (used by TaskDecomposer)
|
## Domain priority (used by TaskDecomposer)
|
||||||
|
|
||||||
`coordination → security → platform → backend → lambda → frontend`
|
`coordination → security → platform → backend → lambda → frontend`
|
||||||
|
|
||||||
Rationale: in v1.8, the security commitments (encryption by default,
|
Rationale: in v1.9, the security commitments (HITL gates, attestation
|
||||||
KMS rotation, deletion protection, CMDB validation, HITL SRE gates)
|
matrix, SoD halt artifact, Wiz/Kyverno adapters) and the design-doc
|
||||||
and the platform commitments (kms-key primitive, uptime primitive,
|
accuracy are the binding constraints; platform owns the P1-1 adapter
|
||||||
adapter expansion, prevent_destroy emission) are the binding
|
parameterization + L1 interface inputs; backend owns the contract
|
||||||
constraints; backend wires the pipeline + decommission mode + API
|
interpolation + per-env CI jobs + the deploy workflow env input;
|
||||||
portability; lambda owns the CMDB validation + forge-agnostic APIs;
|
lambda owns the SNS topic Terraform; frontend is unchanged from v1.0
|
||||||
frontend is unchanged from v1.0 (evidence timeline).
|
(evidence timeline).
|
||||||
|
|
||||||
## Conflict resolutions (lead-developer arbitration)
|
## Conflict resolutions (lead-developer arbitration)
|
||||||
|
|
||||||
- `backend-engineer` vs `platform-engineer` over `schemas/ir.schema.json` + `schemas/stack.schema.json`: platform-engineer owns the IR (substrate-agnostic but infra-shaped); backend-engineer owns the contract schema and the contract→IR resolution. Co-authoring is expected; conflict goes to lead-developer.
|
- `backend-engineer` vs `platform-engineer` over `schemas/ir.schema.json` + `schemas/stack.schema.json`: platform-engineer owns the IR (engine-agnostic but infra-shaped); backend-engineer owns the contract schema and the contract→IR resolution. Co-authoring is expected; conflict goes to lead-developer.
|
||||||
- `backend-engineer` vs `security-engineer` over `core/confidence_signal.py`: security-engineer owns the severity→penalty mapping + critical-override semantics; backend-engineer owns the 6-input weighted sum + per-env thresholds. Co-owned; conflicts go to lead-developer.
|
- `backend-engineer` vs `security-engineer` over `core/confidence_signal.py`: security-engineer owns the severity→penalty mapping + critical-override semantics; backend-engineer owns the 6-input weighted sum + per-env thresholds. Co-owned; conflicts go to lead-developer.
|
||||||
- `platform-engineer` vs `security-engineer` over `adapters/terraform/policy/**`: security-engineer owns the Checkov→PolicyCheckResult adapter + custom rules + the Wiz/Kyverno adapters (policy is a security concern); platform-engineer owns the Terraform adapter (substrate translation). No overlap.
|
- `platform-engineer` vs `security-engineer` over `adapters/terraform/policy/**`: security-engineer owns the Checkov→PolicyCheckResult adapter + custom rules + the Wiz/Kyverno adapters (policy is a security concern); platform-engineer owns the Terraform adapter (engine translation). No overlap.
|
||||||
- `lambda-engineer` vs `platform-engineer` over `terraform/platform/main.tf`: lambda-engineer owns the Lambda + DynamoDB + Secrets Manager definitions; platform-engineer reviews the Terraform structure + state backend. Co-authoring expected; conflicts go to lead-developer.
|
- `lambda-engineer` vs `platform-engineer` over `terraform/platform/main.tf`: lambda-engineer owns the Lambda + DynamoDB + Secrets Manager definitions; platform-engineer reviews the Terraform structure + state backend. Co-authoring expected; conflicts go to lead-developer.
|
||||||
- `backend-engineer` vs `lambda-engineer` over `core/lambda/contract_ingestor.py` vs `scripts/run_platform.sh` + `.github/workflows/deploy.yml` error-report step: lambda-engineer owns the Lambda handler; backend-engineer owns the workflow step that invokes it. The interface (the JSON payload) is co-authored; conflicts go to lead-developer.
|
- `backend-engineer` vs `lambda-engineer` over `core/lambda/contract_ingestor.py` vs `scripts/run_platform.sh` + `.github/workflows/deploy.yml` error-report step: lambda-engineer owns the Lambda handler; backend-engineer owns the workflow step that invokes it. The interface (the JSON payload) is co-authored; conflicts go to lead-developer.
|
||||||
- `lead-developer` vs any: lead-developer owns `.ciagent/**` + `docs/**` meta + verification scripts; persona engineers do not edit CIAgent metadata or the vision/architecture source docs.
|
- `lead-developer` vs any: lead-developer owns `.ciagent/**` + `docs/**` meta + verification scripts; persona engineers do not edit CIAgent metadata or the vision/architecture source docs.
|
||||||
|
|||||||
@@ -1,228 +1,228 @@
|
|||||||
---
|
---
|
||||||
phase: 28-38
|
phase: 39-43
|
||||||
name: v1.8-p1-remediation-uptime-standards-encryption-decommission-docs
|
name: v1.9-design-doc-interpolation-per-env-ci-stubs-p1-1
|
||||||
milestone: v1.8
|
milestone: v1.9
|
||||||
requirements: [REQ-76, REQ-77, REQ-78, REQ-79, REQ-80, REQ-81, REQ-82, REQ-83, REQ-84, REQ-85, REQ-86, REQ-87, REQ-88, REQ-89, REQ-90, REQ-91, REQ-92, REQ-93, REQ-94, REQ-95, REQ-96, REQ-97, REQ-98, REQ-99]
|
requirements: [REQ-100, REQ-101, REQ-102, REQ-103, REQ-104, REQ-105, REQ-106, REQ-107, REQ-108, REQ-109, REQ-110, REQ-111]
|
||||||
type: fix/feat/docs
|
type: feat/docs/fix
|
||||||
---
|
---
|
||||||
|
|
||||||
# ACDL v1.8 — Phase Plans
|
# ACDL v1.9 — Phase Plans
|
||||||
|
|
||||||
> Milestone: v1.8. Planner: ci-planner. Status: active.
|
> Milestone v1.9. Generated at PLAN stage. Autonomy: full.
|
||||||
> 11 phases (28–38), 24 requirements (REQ-76..99).
|
> Requirements: REQ-100..REQ-111 (see REQUIREMENTS.md).
|
||||||
|
> Decisions: D-080..D-089 (see PROJECT.md + RESEARCH.md RA section).
|
||||||
|
> Versioning: feature milestone — progressive patch versions per phase
|
||||||
|
> (v1.8.1..v1.8.5), tag `v1.9.0` at milestone COMPLETE.
|
||||||
|
|
||||||
## Phase 28 — adapter-waf-and-resolver-outputs
|
## Wave ordering
|
||||||
|
|
||||||
**Requirements:** REQ-76 (WAF nested rules + default_action), REQ-77 (L2 outputs resolution)
|
- **Wave 1 (parallel, 2 tasks):** Phase 39 — design-doc refresh (security-engineer) + P1-1 adapter parameterization (platform-engineer). Disjoint file sets; no merge conflict.
|
||||||
**Personas:** platform-engineer (lead), backend-engineer
|
- **Wave 2 (sequential):** Phase 40 — contract interpolation. Depends on Phase 39's design-doc context (lightweight).
|
||||||
**Type:** fix
|
- **Wave 3 (sequential):** Phase 41 — per-env CI jobs. Depends on Phase 40's interpolation + env schema.
|
||||||
|
- **Wave 4 (sequential):** Phase 42 — stub implementation. Depends on Phase 41's HITL job structure.
|
||||||
### Tasks (Wave 1 — sequential):
|
- **Wave 5 (sequential):** Phase 43 — verify + review + audit + complete.
|
||||||
|
|
||||||
1. **platform-engineer:** Fix WAF `rules` emission in `adapters/terraform/adapter.py:346-348` — replace `rules = {_value_expr(...)}` with nested `rules { ... }` block emission per rule. Read `inputs.get("default_action")` (line 334) and emit `allow {}` / `block {}` based on input (default `allow` if absent).
|
|
||||||
2. **backend-engineer:** Implement L2 composition `outputs[]` processing in `core/contract_resolver.py` `resolve_l2()` — after building `resources` (line 232), parse `composition.get("outputs", [])`, resolve source via `child_outputs`, build `stack_instance["outputs"]` dict.
|
|
||||||
3. **platform-engineer:** Extend `adapter.py` `adapt()` to emit `output "<outName>" { value = <ref> }` blocks from `stack_instance.get("outputs", {})`.
|
|
||||||
4. **platform-engineer:** Add tests to `tests/test_adapter.py` (WAF custom rules, default_action block, output blocks) + `tests/test_contract_resolver.py` (L2 outputs for static-assets).
|
|
||||||
|
|
||||||
### Must-haves:
|
|
||||||
- WAF with custom rules emits `rules {` blocks, not `rules = [`
|
|
||||||
- WAF `default_action: block` emits `block {}`
|
|
||||||
- L2 resolution yields `stack.outputs.*`
|
|
||||||
- Adapter emits `output` blocks
|
|
||||||
- `pytest` passes (275 → ~285)
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 29 — ssm-kms-and-invoke-policy
|
## Phase 39 — design-doc-refresh-and-p1-1-parameterization
|
||||||
|
|
||||||
**Requirements:** REQ-78 (SSM fail-loud), REQ-79 (Terraform-rendered invoke policy)
|
**Requirements:** REQ-100, REQ-101, REQ-102
|
||||||
**Personas:** backend-engineer (lead), lambda-engineer, security-engineer
|
**Personas:** security-engineer (lead: design docs), platform-engineer (lead: P1-1), backend-engineer (review)
|
||||||
**Type:** fix
|
**Branch:** `phase/39-design-doc-refresh-and-p1-1`
|
||||||
|
|
||||||
### Tasks (Wave 1):
|
### Task 39.1 — Refresh hitl_matrix_design.md (REQ-100, security-engineer)
|
||||||
|
- Rewrite the status block: "v1.2 wires the gates" → "v1.9 wires the gates (Phase 42)".
|
||||||
|
- Update "Spike scope note" → "v1.9 scope note": qa/prod/dr now exercised (Phase 41 wires the job structure; Phase 42 wires the attestation gates); dev remains autonomous.
|
||||||
|
- Update §10.4 matrix: mark the offline-testable concerns (contract NFRs, schema validity, policy pass) as **implemented in v1.9** (`core/attestation_matrix.py`); mark operator-supplied concerns as **accept signed evidence artifacts** (D-084).
|
||||||
|
- Add a "v1.9 wiring" section: cross-reference Phase 41's per-env jobs + Phase 42's `hitl_gates.py` + `attestation_matrix.py` + the outbox-based SoD check.
|
||||||
|
- Preserve D-042 (approver identity = `gitea.actor` / `github.actor`) — still accurate.
|
||||||
|
- Verify: `grep -i "dev-only spike" core/hitl_matrix_design.md` returns 0 hits; `grep -i "v1.2 wires" core/hitl_matrix_design.md` returns 0 hits.
|
||||||
|
|
||||||
1. **backend-engineer:** Change `core/output_publisher.py:54-55` `_kms_key_id()` — raise `RuntimeError` when `ACDL_KMS_KEY_ID` unset; add `ACDL_ALLOW_DEFAULT_KMS=1` escape hatch.
|
### Task 39.2 — Refresh audit_ledger_design.md (REQ-101, security-engineer)
|
||||||
2. **lambda-engineer:** Convert `terraform/platform/consumer_invoke_policy.json` to Terraform-rendered template — add `terraform/platform/variables.tf` with `data "aws_caller_identity" "current" {}` + `templatestring` or `replace()` for account ID injection.
|
- Mark the "Spike scope (D-041)" section as **shipped + production since v1.8** (hash chain + DynamoDB outbox + `acdl-evidence` mirror).
|
||||||
3. **backend-engineer:** Add `tests/test_output_publisher.py` cases: `test_kms_unset_raises`, `test_kms_unset_allow_default_kms`. Add `tests/test_invoke_policy.py` asserting rendered policy has no `000000000000`.
|
- Move the "v1.2 build-out" section (S3 Object Lock + JWS + async worker + DLQ + daily checkpoints) under a clearly-labeled "**Deferred to a future milestone (D-083)**" heading. Keep the content (it's the design for when it ships) but mark it not-v1.9.
|
||||||
|
- Update the RPO/RTO table: spike row → "v1.8+ (production): RPO=0 (sync outbox), RTO=workflow re-run"; v1.2 row → "Future milestone (D-083): RPO=0, RTO=DLQ replay".
|
||||||
|
- Update the outbox item shape: note `approver_qa`/`approver_prod`/`approver_dr` are populated by v1.9's `hitl_gates.attest` (Phase 42).
|
||||||
|
- Verify: `grep -i "Phases 08-10 implement" core/audit_ledger_design.md` returns 0 hits; the deferred section is clearly labeled.
|
||||||
|
|
||||||
### Must-haves:
|
### Task 39.3 — P1-1 adapter parameterization (REQ-102, platform-engineer)
|
||||||
- SSM raises RuntimeError without CMK; escape hatch works
|
- `modules/l1/ecs-service/interface.json`: add inputs `desired_count` (integer, default 1), `launch_type` (string, default "FARGATE"), `family` (string, default "app").
|
||||||
- Rendered invoke policy has live account ID
|
- `modules/l1/alb/interface.json`: add inputs `load_balancer_type` (string, default "application"), `target_type` (string, default "ip").
|
||||||
- `pytest` passes (~290)
|
- `modules/l1/vpc/interface.json`: add input `name` (string, default "app") for the VPC/IGW/RT `Name` tag prefix.
|
||||||
|
- `adapters/terraform/adapter.py`: change hardcoded defaults to `inputs.get("<name>", "<default>")` where the default matches the interface default (safety fallback; the resolver populates from the interface). Remove the hardcoded `Name = "acdl-microservice-rt"` (line 283) → use `inputs.get("name", "app")`-derived tag.
|
||||||
|
- Preserve the v1.1 S3 regression (S3 has none of these inputs → no change).
|
||||||
|
- Tests: `tests/test_p1_1_adapter_parameterization.py` — (a) `desired_count: 3` in contract inputs emits `desired_count = 3`; (b) absent `desired_count` emits `desired_count = 1` via interface default; (c) `target_type: "instance"` emits `target_type = "instance"`; (d) v1.1 S3 regression still passes (byte-identical `main.tf`).
|
||||||
|
- Verify: `pytest tests/test_p1_1_adapter_parameterization.py` passes; `run_platform.sh --check-only` exits 0; `pytest` total count increases; v1.1 S3 regression test passes.
|
||||||
|
|
||||||
|
### Task 39.4 — Design doc test (REQ-100/101, backend-engineer)
|
||||||
|
- `tests/test_design_docs_current.py`: assert (a) no stale "dev-only spike" / "v1.2 wires the gates" / "Phases 08-10 implement" framing in either design doc; (b) `audit_ledger_design.md` has a "Deferred to a future milestone" section referencing D-083; (c) `hitl_matrix_design.md` references the v1.9 implementation (`attestation_matrix.py`, `hitl_gates.py`).
|
||||||
|
- Verify: `pytest tests/test_design_docs_current.py` passes.
|
||||||
|
|
||||||
|
### Must-haves (Phase 39)
|
||||||
|
- [ ] `core/hitl_matrix_design.md` refreshed (no stale framing).
|
||||||
|
- [ ] `core/audit_ledger_design.md` refreshed (S3 Object Lock marked deferred D-083).
|
||||||
|
- [ ] Adapter has no hardcoded ECS/ALB/VPC defaults (read from inputs).
|
||||||
|
- [ ] `tests/test_p1_1_adapter_parameterization.py` + `tests/test_design_docs_current.py` pass.
|
||||||
|
- [ ] `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0; v1.1 S3 regression passes.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 30 — run-platform-isolation-and-api-portability
|
## Phase 40 — contract-interpolation
|
||||||
|
|
||||||
**Requirements:** REQ-80 (temp dir), REQ-81 (forge-agnostic URLs), REQ-82 (static-key override)
|
**Requirements:** REQ-103, REQ-104
|
||||||
**Personas:** backend-engineer (lead), lambda-engineer
|
**Personas:** backend-engineer (lead), platform-engineer (review)
|
||||||
**Type:** fix
|
**Branch:** `phase/40-contract-interpolation`
|
||||||
|
|
||||||
### Tasks (Wave 1 — parallel):
|
### Task 40.1 — Environment JSON schema (REQ-104, backend-engineer)
|
||||||
|
- `schemas/environment.schema.json` (draft 2020-12): required `name` (string), `account_id` (string), `region` (string), `state_backend` (object: `bucket`, `lock_table`), `network` (object: `vpc_cidr`, `azs` array), `runner_role_arn` (string), `autonomy` (enum: full/attested), `confidence_threshold` (number).
|
||||||
|
- `core/environments/dev.json` validates against it.
|
||||||
|
- Add `core/environments/qa.json`, `prod.json`, `dr.json`: `account_id: "000000000000"`, `autonomy: "attested"`, `confidence_threshold` 0.75/0.90/0.95, regions us-east-1, state_backend buckets `acdl-qa-state`/`acdl-prod-state`/`acdl-dr-state`.
|
||||||
|
- `core/environment_check.py`: add `load(env_name, root=None)` returning the parsed env dict; `check()` stays. Add a stderr warning when `account_id == "000000000000"` and `env_name != "dev"` (prompts real binding).
|
||||||
|
- `tests/test_environment_schema.py`: all 4 env files validate; `load("dev")` returns the dict; warning emitted for qa/prod/dr placeholders.
|
||||||
|
- Verify: `pytest tests/test_environment_schema.py` passes.
|
||||||
|
|
||||||
1. **backend-engineer:** Change `scripts/run_platform.sh:122` adapter target from `terraform/spike` to `$WORK/tf`. Update all downstream references. Remove committed `terraform/spike/*.tf`. Update `tests/test_pipeline.py`. Update deploy.yml artifact upload path.
|
### Task 40.2 — Interpolation expansion in the resolver (REQ-103, backend-engineer)
|
||||||
2. **lambda-engineer:** Add `_github_api_base()` + `_forge_type()` to `core/lambda/contract_ingestor.py`. Replace hardcoded URLs at lines 109, 149, 163. Add `tests/test_contract_ingestor.py` Gitea base URL test.
|
- `core/contract_resolver.py`: add `_expand_vars(value, context)` — recursively walks dicts/lists/strings; replaces `${env.<dotted.path>}` and `${contract.<dotted.path>}` tokens by looking up the dotted path in the context dict. Unknown token → `ValueError(f"unresolved interpolation token: {token}")`.
|
||||||
3. **backend-engineer:** Restructure `configure-aws-credentials` step in both deploy workflows (byte-identical) — single conditional step with `access-key`/`secret-key` inputs when static key present. Update `tests/test_pipeline_contract.py`.
|
- `resolve()`: after schema validation, load the env via `environment_check.load(contract["environment"])`, build `context = {"env": env, "contract": contract}`, expand all string values in `contract["inputs"]` (recursively, per D-087), then proceed to IR resolution.
|
||||||
|
- The expansion is post-schema-validation (schema sees the raw tokens, which are valid strings) and pre-IR-resolution (the resolver sees concrete values).
|
||||||
|
- `tests/test_interpolation.py`: (a) `${env.region}` expands to `us-east-1`; (b) `${env.state_backend.bucket}` expands to `acdl-dev-state`; (c) `${contract.module}` expands to `static-assets`; (d) unknown token raises `ValueError`; (e) nested map value `env: { DB_URL: "acdl-${env.environment}-db" }` expands recursively; (f) `resolve("contracts/static-assets.yaml")` succeeds with expanded values.
|
||||||
|
- Verify: `pytest tests/test_interpolation.py` passes.
|
||||||
|
|
||||||
### Must-haves:
|
### Task 40.3 — Sample contracts use naming patterns (REQ-103, backend-engineer)
|
||||||
- `run_platform.sh --check-only` writes to temp dir
|
- `contracts/static-assets.yaml`: `bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}` (the naming pattern the requirement calls out: region + account id + environment).
|
||||||
- `contract_ingestor.py` uses `GITHUB_API_BASE`
|
- `contracts/microservice.yaml`: same pattern for `bucket_name`.
|
||||||
- Deploy workflow static-key override wired
|
- Keep `region: us-east-1` as a literal (or `${env.region}` — both valid; use `${env.region}` to demonstrate).
|
||||||
- Both deploy workflows byte-identical
|
- `tests/test_sample_contracts_interpolate.py`: resolving the sample contracts produces concrete bucket names like `acdl-dev-static-assets-000000000000-us-east-1`.
|
||||||
- `pytest` passes (~295)
|
- Verify: `pytest tests/test_sample_contracts_interpolate.py` passes; `run_platform.sh --check-only` exits 0 (resolver expands before adapter).
|
||||||
|
|
||||||
|
### Must-haves (Phase 40)
|
||||||
|
- [ ] `schemas/environment.schema.json` exists; 4 env files validate.
|
||||||
|
- [ ] `_expand_vars` in resolver; unknown tokens raise.
|
||||||
|
- [ ] Sample contracts use `${env.*}` + `${contract.*}` naming patterns.
|
||||||
|
- [ ] `tests/test_environment_schema.py` + `tests/test_interpolation.py` + `tests/test_sample_contracts_interpolate.py` pass.
|
||||||
|
- [ ] `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 31 — encryption-by-default-and-per-stack-cmk
|
## Phase 41 — per-environment-ci-jobs
|
||||||
|
|
||||||
**Requirements:** REQ-83 (kms-key primitive), REQ-84 (encryption NFRs on all primitives), REQ-85 (L2 CMK wiring)
|
**Requirements:** REQ-105, REQ-106
|
||||||
**Personas:** platform-engineer (lead), security-engineer
|
**Personas:** backend-engineer (lead), security-engineer (HITL gate review)
|
||||||
**Type:** feat
|
**Branch:** `phase/41-per-environment-ci-jobs`
|
||||||
|
|
||||||
### Tasks (Wave 1 — kms-key primitive + adapter):
|
### Task 41.1 — Per-env contract files (REQ-105, backend-engineer)
|
||||||
1. **platform-engineer:** Create `modules/l1/kms-key/` with `interface.json` (type `aws:kms:key`, inputs: description/region/deletion_window_days, outputs: kms_key_arn/kms_key_id, NFRs: enable_rotation default true, deletion_protection default true) + `instance.json` + `README.md` + `examples/`.
|
- `contracts/static-assets.dev.yaml`, `.qa.yaml`, `.prod.yaml`, `.dr.yaml` — each sets `environment:` to its own name; `inputs.bucket_name` uses `${env.environment}-${contract.module}-${env.account_id}-${env.region}` interpolation (so the file content is near-identical; only `environment:` differs).
|
||||||
2. **platform-engineer:** Add `aws:kms:key → aws_kms_key` + `aws:kms:alias → aws_kms_alias` to adapter TYPE_MAP. Emit `enable_key_rotation = true` + alias.
|
- `contracts/microservice.{dev,qa,prod,dr}.yaml` — same pattern.
|
||||||
|
- Keep `contracts/static-assets.yaml` + `contracts/microservice.yaml` as the dev default (backwards compat).
|
||||||
|
- `tests/test_per_env_contracts.py`: all 8 per-env files validate against `schemas/contract.schema.json`; each resolves to a stack with the correct environment.
|
||||||
|
- Verify: `pytest tests/test_per_env_contracts.py` passes.
|
||||||
|
|
||||||
### Tasks (Wave 2 — encryption NFRs on all primitives, after Wave 1):
|
### Task 41.2 — Deploy workflow `environment` input (REQ-106, backend-engineer)
|
||||||
3. **platform-engineer:** Add `encryption_enabled` NFR (default true) + `kms_key_arn` input to every L1 `interface.json` (s3, rds, ecr, ecs-service, ecs-cluster, alb, cloudfront, waf, vpc, iam-role). Update adapter to emit encryption blocks referencing the CMK when `kms_key_arn` is provided; managed KMS fallback with stderr warning when not.
|
- `.github/workflows/deploy.yml` + `.gitea/workflows/deploy.yml` (byte-identical): add `environment` input (`type: string`, default `""`, description "Target environment override (dev/qa/prod/dr); when empty, the contract's environment field is used").
|
||||||
4. **platform-engineer:** Update both L2 `composition.json` files — add `kms-key` child + wires connecting `kms_key_arn` output to each child's `kms_key_arn` input.
|
- `scripts/run_platform.sh`: add `--environment <name>` flag. When set, override the contract's `environment` field at load time (before schema validation per D-088, so interpolation context is consistent). Re-run the onboarding check against the supplied env.
|
||||||
5. **platform-engineer:** Add `tests/test_encryption.py` — assert every primitive has encryption NFRs; assert adapter emits encryption blocks; assert L2 wires CMK; assert `enable_key_rotation = true`.
|
- The workflow's "Run the platform pipeline" step passes `--environment ${{ inputs.environment }}` when non-empty.
|
||||||
|
- `tests/test_deploy_workflow_env_input.py`: both deploy workflows declare the `environment` input; byte-identical; `run_platform.sh --environment qa contracts/static-assets.yaml` produces a stack whose env is qa (tested via the resolver directly since run_platform.sh needs AWS for full mode — test the override logic in the resolver).
|
||||||
|
- `core/contract_resolver.py` `resolve()`: accept optional `environment_override` arg; when set, set `contract["environment"] = override` before schema validation + interpolation.
|
||||||
|
- Verify: `pytest tests/test_deploy_workflow_env_input.py` passes; both deploy workflows byte-identical.
|
||||||
|
|
||||||
### Must-haves:
|
### Task 41.3 — Per-env caller workflow docs + HITL gate structure (REQ-106, security-engineer review)
|
||||||
- kms-key primitive exists + registered
|
- `docs/CONSUMER_GUIDE.md`: add a "Per-environment deployment" section with 4 caller-workflow examples (`.github/workflows/deploy-dev.yml`, `deploy-qa.yml`, `deploy-prod.yml`, `deploy-dr.yml`), each `uses: acdl/.github/workflows/deploy.yml@v1.9` with `environment: <env>` + `contract: .acdl/<module>.<env>.yaml`. Document: "Promotion = running the matching job; no `environment:` field editing."
|
||||||
- All primitives have `encryption_enabled` NFR + `kms_key_arn` input
|
- HITL gate structure (wired in Phase 42, documented here): qa/prod/dr caller workflows use `workflow_dispatch` with approval inputs (`approve_qa`, `approve_prod`, `approve_dr`) per `hitl_matrix_design.md` D-042; `gitea.actor` / `github.actor` is the approver of record. dev is autonomous (no gate).
|
||||||
- L2 modules wire per-stack CMK
|
- `tests/test_consumer_guide_per_env_section.py`: the consumer guide has the per-env section with 4 caller examples.
|
||||||
- Adapter emits encryption blocks
|
- Verify: `pytest tests/test_consumer_guide_per_env_section.py` passes.
|
||||||
- `pytest` passes (~310)
|
|
||||||
|
### Must-haves (Phase 41)
|
||||||
|
- [ ] 8 per-env contract files exist + validate + resolve.
|
||||||
|
- [ ] Deploy workflow has `environment` input (byte-identical Gitea + GitHub).
|
||||||
|
- [ ] `run_platform.sh --environment <name>` overrides; resolver supports `environment_override`.
|
||||||
|
- [ ] Consumer guide documents per-env caller workflows + promotion-without-editing.
|
||||||
|
- [ ] `tests/test_per_env_contracts.py` + `tests/test_deploy_workflow_env_input.py` + `tests/test_consumer_guide_per_env_section.py` pass.
|
||||||
|
- [ ] `run_ci.sh` exits 0; both deploy workflows byte-identical.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 32 — deletion-protection-by-default-and-l2-feature-flag
|
## Phase 42 — stub-implementation
|
||||||
|
|
||||||
**Requirements:** REQ-86 (deletion_protection NFR on all primitives), REQ-87 (L2 feature flag)
|
**Requirements:** REQ-107, REQ-108, REQ-109, REQ-110, REQ-111
|
||||||
**Personas:** platform-engineer (lead), backend-engineer
|
**Personas:** security-engineer (lead), backend-engineer (run_platform wiring), lambda-engineer (SNS topic Terraform)
|
||||||
**Type:** feat
|
**Branch:** `phase/42-stub-implementation`
|
||||||
|
|
||||||
### Tasks (Wave 1):
|
### Task 42.1 — route_halt_artifact real (REQ-107, security-engineer + lambda-engineer)
|
||||||
1. **platform-engineer:** Add `deletion_protection` NFR (boolean, default true) to every L1 `interface.json` (rds already has it). Update adapter to emit `lifecycle { prevent_destroy = true }` when NFR is true; omit when false. RDS gets BOTH `deletion_protection` arg + `prevent_destroy` lifecycle.
|
- `core/separation_of_duties.py` `route_halt_artifact`: when `ACDL_SOD_HALT_TOPIC_ARN` set, publish to SNS via boto3 (`sns.publish(TopicArn=arn, Message=..., Subject="ACDL SoD halt")`); when unset, fall back to structured stderr emission + a `SEPARATION_OF_DUTIES_VIOLATION` event write via `outbox_writer.write_event` (so the halt is in the audit chain). No silent print-only stub.
|
||||||
2. **backend-engineer:** Add `features` object support to `schemas/stack.schema.json` (optional `features.deletion_protection`). Update `core/contract_resolver.py` `resolve_l2()` to propagate `features.deletion_protection` to each child's `deletion_protection` NFR. Add `inputs.deletion_protection` to `schemas/contract.schema.json` (optional boolean).
|
- `terraform/platform/main.tf`: add `aws_sns_topic.acdl-sod-halt` + a basic access policy (allow the platform Lambda / runner role to publish). Output the topic ARN.
|
||||||
3. **platform-engineer:** Add `tests/test_deletion_protection.py` — assert every primitive has the NFR; assert adapter emits `prevent_destroy`; assert L2 feature flag propagation.
|
- `tests/test_route_halt_artifact.py`: (a) with `ACDL_SOD_HALT_TOPIC_ARN` set, moto-mocked SNS receives the publish; (b) without it, a `SEPARATION_OF_DUTIES_VIOLATION` event is written to the outbox (moto-mocked DynamoDB); (c) stderr emission occurs in both cases.
|
||||||
|
- Verify: `pytest tests/test_route_halt_artifact.py` passes.
|
||||||
|
|
||||||
### Must-haves:
|
### Task 42.2 — HITL attestation gates (REQ-108, security-engineer + backend-engineer)
|
||||||
- Every primitive has `deletion_protection` NFR (default true)
|
- `core/hitl_gates.py`: `attest(contract_id, env, approver, evidence, outbox_client=None)` → records `approver_qa`/`approver_prod`/`approver_dr` to the outbox item for `contract_id`; runs `separation_of_duties.check(outbox_client, contract_id, approver)` on prod; invokes the attestation matrix (Task 42.3) for the target env; returns `(ok, reason)`. Dev skips (returns `(True, "dev autonomous")`).
|
||||||
- Adapter emits `prevent_destroy = true` when true
|
- `scripts/run_platform.sh`: before apply (for qa/prod/dr), call `hitl_gates.attest` with the approver from `GITHUB_ACTOR`/`GITEA_ACTOR` env. Block on `(ok=False)`.
|
||||||
- L2 feature flag propagates
|
- `tests/test_hitl_gates.py`: (a) dev skips; (b) qa records `approver_qa` (moto outbox); (c) prod records `approver_prod` + SoD blocks when `approver_qa == approver_prod`; (d) prod passes when approvers differ.
|
||||||
- `pytest` passes (~320)
|
- Verify: `pytest tests/test_hitl_gates.py` passes.
|
||||||
|
|
||||||
|
### Task 42.3 — 8-concern attestation matrix (REQ-109, security-engineer)
|
||||||
|
- `core/attestation_matrix.py`: `check(env, evidence_bundle)` → runs the 8 concerns. Offline-testable concerns (contract NFRs, schema validity, policy pass) run for real. Operator-supplied concerns accept an uploaded signed evidence artifact (JSON with `timestamp`, `type`, `payload`, optional `signature`); validate freshness (within the declared window from `hitl_matrix_design.md` §10.4) + schema (per-concern). Signature verification via KMS when `ACDL_ATTESTATION_SIGNING_KEY_ID` set; skipped + logged when unset (D-089). Fail loud if missing/expired for prod/dr.
|
||||||
|
- `hitl_gates.attest` calls `attestation_matrix.check(env, evidence)` and blocks on any failing concern.
|
||||||
|
- `tests/test_attestation_matrix.py`: (a) offline concerns pass for a valid contract; (b) operator-supplied concern missing → block for prod; (c) operator-supplied concern present + fresh → pass; (d) expired artifact → block; (e) signature skip when key unset (logged).
|
||||||
|
- Verify: `pytest tests/test_attestation_matrix.py` passes.
|
||||||
|
|
||||||
|
### Task 42.4 — Wiz real API client (REQ-110, security-engineer)
|
||||||
|
- `adapters/wiz/wiz_adapter.py`: add `WizClient` class — `__init__` reads `WIZ_API_TOKEN` + `WIZ_API_URL`; `fetch_issues(filter_by)` queries the Wiz GraphQL API (`<url>/graphql`, Bearer auth, `issues` query). Translate results → `PolicyCheckResult` records (`engine: "wiz"`, `ruleId: <control.name>`, `severity: <lowercased>`, `status: FAIL`, `message: <title>`, `resource: <entity.name>`). Graceful degrade: when `WIZ_API_TOKEN` or `WIZ_API_URL` unset → emit the existing single `SKIPPED` `WIZ_NOT_CONFIGURED` record (no network call). Pagination handled via `pageInfo.hasNextPage`.
|
||||||
|
- `tests/test_wiz_adapter_real_client.py`: (a) with a recorded GraphQL fixture, `WizClient` translates issues → `PolicyCheckResult` records; (b) graceful degrade when env unset; (c) pagination follows `endCursor`.
|
||||||
|
- Verify: `pytest tests/test_wiz_adapter_real_client.py` passes.
|
||||||
|
|
||||||
|
### Task 42.5 — Kyverno translator fleshed out (REQ-111, security-engineer)
|
||||||
|
- `adapters/kyverno/kyverno_adapter.py`: full `PolicyReport` → `PolicyCheckResult` mapping — handle `pass`/`fail`/`skip`/`warn` results, severity mapping (critical/high/medium/low/info), resource extraction, skip-with-reason handling. Keep the inactive-for-Terraform guard (emits a single `SKIPPED` `KYVERNO_INACTIVE_TF_STACK` record when no K8s manifests). Add a `--kube-version` stub (parsed but not yet used — for future GitOps).
|
||||||
|
- `tests/test_kyverno_adapter.py`: expand — (a) `pass` result → `PolicyCheckResult` with `status: PASS`; (b) `fail` with severity → correct severity mapping; (c) `skip` with reason → `SKIPPED` record; (d) inactive-for-TF guard emits the `KYVERNO_INACTIVE_TF_STACK` record.
|
||||||
|
- Verify: `pytest tests/test_kyverno_adapter.py` passes.
|
||||||
|
|
||||||
|
### Must-haves (Phase 42)
|
||||||
|
- [ ] `route_halt_artifact` real (SNS + outbox fallback); SNS topic in Terraform.
|
||||||
|
- [ ] `hitl_gates.py` attests qa/prod/dr; SoD blocks on identity equality.
|
||||||
|
- [ ] `attestation_matrix.py` implements 8 concerns (offline-testable + signed artifacts).
|
||||||
|
- [ ] Wiz adapter real client + graceful degrade.
|
||||||
|
- [ ] Kyverno translator fleshed out + inactive guard preserved.
|
||||||
|
- [ ] All 5 new test files pass; `run_ci.sh` exits 0.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 33 — uptime-kuma-primitive
|
## Phase 43 — verify-review-audit-complete
|
||||||
|
|
||||||
**Requirements:** REQ-88 (uptime primitive), REQ-89 (deployed by default after L2), REQ-90 (feature flag), REQ-91 (pipeline stage)
|
**Requirements:** — (milestone gate)
|
||||||
**Personas:** platform-engineer (lead), backend-engineer
|
**Personas:** lead-developer (lead), all personas (review participation)
|
||||||
**Type:** feat
|
**Branch:** `phase/43-verify-review-audit-complete`
|
||||||
|
|
||||||
### Tasks (Wave 1 — primitive + adapter):
|
### Task 43.1 — 4-layer verify
|
||||||
1. **platform-engineer:** Create `modules/l1/uptime/` with `interface.json` (type `aws:ecs:uptime-service`, inputs: container_image/region/monitored_endpoints/static_checks/alert_channels/feature_flag_enabled/cpu/memory, outputs: uptime_url/service_arn/task_definition_arn, NFRs: deletion_protection/encryption_enabled) + `instance.json` + `README.md` + `examples/simple.yaml` + `examples/complex.yaml`.
|
- Structural: all new files present (environment.schema.json, 4 env files, 8 per-env contracts, hitl_gates.py, attestation_matrix.py, SNS topic in main.tf, 5+ new test files).
|
||||||
2. **platform-engineer:** Add `aws:ecs:uptime-service` to adapter TYPE_MAP. Emit ECS Fargate task + service + ALB + listener + EFS volume + CloudWatch log group. When `feature_flag_enabled=false`, emit NO resources. Register in `registry.json`.
|
- Behavioral: `pytest` passes (count increases from v1.8's 350 by ~30+ new tests); `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
- Security: no hardcoded adapter defaults; HITL gates block on SoD violation; attestation matrix fails loud on missing evidence for prod/dr; Wiz degrades gracefully.
|
||||||
|
- Quality: each new feature has dedicated tests (interpolation, per-env jobs, SoD, HITL gates, attestation matrix, Wiz, Kyverno).
|
||||||
|
|
||||||
### Tasks (Wave 2 — pipeline + script, after Wave 1):
|
### Task 43.2 — Multi-persona review
|
||||||
3. **backend-engineer:** Add `deploy-uptime` stage to `pipelines/deploy.yaml` (after `publish-outputs`). Update both deploy workflows (byte-identical) with the stage. Add `scripts/seed_uptime_monitors.py` for post-deploy monitor seeding via uptime-kuma API.
|
- `ciagent-review` across the v1.9 diff (phases 39–42). Auto-apply P0; flag P1+ for post-hoc.
|
||||||
4. **backend-engineer:** Update `scripts/run_platform.sh` — add `deploy-uptime` step: read L2 stack outputs, construct synthetic uptime contract with `monitored_endpoints` from outputs, run second terraform apply with separate state (`$WORK/uptime-tf/`), publish uptime URL via PR comment. Skip when `inputs.uptime_enabled=false`.
|
- Reconstruct `.ciagent/REVIEW.md` with v1.9 content (D-086). Note that v1.3–v1.8 reviews were not persisted (no git-history rewrite).
|
||||||
5. **backend-engineer:** Add `tests/test_uptime_primitive.py` — validate interface; assert adapter emits ECS service when flag=true; assert no resources when flag=false; assert `deploy-uptime` stage in pipeline contract.
|
|
||||||
|
|
||||||
### Must-haves:
|
### Task 43.3 — Audit
|
||||||
- Uptime primitive exists with feature flag + alert channels
|
- Reconstruction: git log matches `.ciagent/` files.
|
||||||
- Deployed by default after L2 (separate state)
|
- File discipline: all `.ciagent/` files valid.
|
||||||
- Uptime URL published via PR comment
|
- Branch hygiene: stale branches cleaned.
|
||||||
- Feature flag disables deployment
|
- Commit discipline: all commits have `---ci---` blocks.
|
||||||
- `deploy-uptime` stage in deploy contract + byte-identical workflows
|
|
||||||
- `pytest` passes (~335)
|
### Task 43.4 — Complete
|
||||||
|
- Update `.ciagent/REQUIREMENTS.md`: mark REQ-100..REQ-111 complete; add v1.9 traceability table.
|
||||||
|
- Update `.ciagent/ROADMAP.md`: add v1.9 milestone section (complete).
|
||||||
|
- Update `.ciagent/PROJECT.md`: v1.9 status → complete.
|
||||||
|
- Tag `v1.9.0`; update floating `v1.9` + `v1` tags.
|
||||||
|
- Bump `uses:`/`ref:` from `@v1.6` → `@v1.9` in `contracts/*.yaml`, `deploy.yml` checkout `ref:`, `docs/CONSUMER_GUIDE.md` (D-071 successor).
|
||||||
|
- Commit: `docs(milestone): complete v1.9`.
|
||||||
|
|
||||||
|
### Must-haves (Phase 43)
|
||||||
|
- [ ] 4-layer verify PASS.
|
||||||
|
- [ ] Review: 0 new P0; P1+ flagged for post-hoc.
|
||||||
|
- [ ] Audit: clean.
|
||||||
|
- [ ] Tag `v1.9.0` created; floating tags updated.
|
||||||
|
- [ ] `uses:`/`ref:` bumped to `@v1.9`.
|
||||||
|
- [ ] REQUIREMENTS.md + ROADMAP.md + PROJECT.md updated.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Phase 34 — decommission-alias-and-cmdb-validation
|
*End of PLAN.md.*
|
||||||
|
|
||||||
**Requirements:** REQ-92 (decommission mode), REQ-93 (CMDB validation), REQ-94 (consumer docs)
|
|
||||||
**Personas:** backend-engineer (lead), lambda-engineer, security-engineer
|
|
||||||
**Type:** feat
|
|
||||||
|
|
||||||
### Tasks (Wave 1 — CMDB + Lambda, parallel):
|
|
||||||
1. **lambda-engineer:** Add `acdl-change-requests` DynamoDB table to `terraform/platform/main.tf` (PK changeRequestId, SK submittedAt, SSE via CMK, PITR). Add `validate_change_request` action to `core/lambda/contract_ingestor.py` — query table, assert status=approved + consumerRepo match, return CR details or 403.
|
|
||||||
2. **backend-engineer:** Add `decommission_transform(stack_instance)` to `core/contract_resolver.py` — zero all counts (desired_count=0 for ECS, etc.).
|
|
||||||
|
|
||||||
### Tasks (Wave 2 — pipeline + docs, after Wave 1):
|
|
||||||
3. **backend-engineer:** Add `mode: decommission` to deploy workflow inputs. Add decommission stages to `pipelines/deploy.yaml`: validate-change-request → disable-deletion-protection (HITL SRE gate via GitHub environment) → zero-counts (second HITL SRE gate) → confirm-decommission. Update both deploy workflows (byte-identical).
|
|
||||||
4. **backend-engineer:** Update `docs/CONSUMER_GUIDE.md` with "Decommissioning a stack" section (request CR, trigger decommission, HITL gates, what happens).
|
|
||||||
5. **backend-engineer:** Add `tests/test_decommission.py` — assert `decommission_transform` zeroes counts; assert `validate_change_request` rejects invalid CRs; assert decommission stages in pipeline contract.
|
|
||||||
|
|
||||||
### Must-haves:
|
|
||||||
- Decommission mode on existing deploy pipeline
|
|
||||||
- 2-step with HITL SRE gates
|
|
||||||
- CR ID validated against DynamoDB CMDB
|
|
||||||
- Documented in consumer guide
|
|
||||||
- `pytest` passes (~345)
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Phase 35 — module-engineering-standards
|
|
||||||
|
|
||||||
**Requirements:** REQ-95 (STANDARDS.md), REQ-96 (catalog fix + template update)
|
|
||||||
**Personas:** lead-developer (lead), platform-engineer, backend-engineer
|
|
||||||
**Type:** docs + refactor
|
|
||||||
|
|
||||||
### Tasks (Wave 1):
|
|
||||||
1. **lead-developer:** Author `modules/STANDARDS.md` — comprehensive L1+L2 authoring + review standards (scanned from current modules per RESEARCH TARGET 6): required files, interface schema, input/output/NFR conventions, encryption + deletion protection as mandatory NFRs, naming, multi-resource pattern, adapter extension pattern, code review checklist.
|
|
||||||
2. **lead-developer:** Fix `modules/README.md` catalog index — add rds + uptime + kms-key to Primitives table. Update `modules/README-TEMPLATE.md` — add `## NFRs` section.
|
|
||||||
3. **backend-engineer:** Add `tests/test_module_standards.py` — automated enforcement: every L1 has `deletion_protection` + `encryption_enabled` NFRs; every L2 has valid structure; every module registered; every module has README + examples.
|
|
||||||
|
|
||||||
### Must-haves:
|
|
||||||
- `modules/STANDARDS.md` exists with L1+L2 standards
|
|
||||||
- Catalog index includes all primitives
|
|
||||||
- Template has NFRs section
|
|
||||||
- Automated standards test passes
|
|
||||||
- `pytest` passes (~355)
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Phase 36 — schemas-adapters-pipelines-readmes
|
|
||||||
|
|
||||||
**Requirements:** REQ-97 (schemas README), REQ-98 (pipelines README), REQ-99 (adapters README)
|
|
||||||
**Personas:** lead-developer (lead), backend-engineer, platform-engineer
|
|
||||||
**Type:** docs
|
|
||||||
|
|
||||||
### Tasks (Wave 1 — parallel):
|
|
||||||
1. **lead-developer:** Author `schemas/README.md` — how to write schemas, wire into platform, test in CI, dependencies, existing catalog.
|
|
||||||
2. **lead-developer:** Author `pipelines/README.md` — how to write pipeline contracts, wire into workflows, test, dependencies, catalog.
|
|
||||||
3. **lead-developer:** Author `adapters/README.md` — how to write adapters, wire into platform, test, dependencies, catalog.
|
|
||||||
4. **backend-engineer:** Add `tests/test_docs_coverage.py` — assert all 3 READMEs exist + contain required sections.
|
|
||||||
|
|
||||||
### Must-haves:
|
|
||||||
- All 3 READMEs exist with comprehensive documentation
|
|
||||||
- CI validates presence
|
|
||||||
- `pytest` passes (~358)
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Phase 37 — verify
|
|
||||||
|
|
||||||
**Personas:** lead-developer (lead), all personas
|
|
||||||
**Type:** verify
|
|
||||||
|
|
||||||
### Tasks:
|
|
||||||
1. Structural: all new files present.
|
|
||||||
2. Behavioral: `pytest` passes (~358); `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
|
||||||
3. Security: no secrets; CMK enforced; no placeholder account IDs; deletion protection on by default.
|
|
||||||
4. Quality: each P1 fix + each new feature has a dedicated test.
|
|
||||||
|
|
||||||
---
|
|
||||||
|
|
||||||
## Phase 38 — review-audit-complete
|
|
||||||
|
|
||||||
**Personas:** lead-developer (lead), all personas
|
|
||||||
**Type:** review + audit + complete
|
|
||||||
|
|
||||||
### Tasks:
|
|
||||||
1. Review: 0 new P0/P1; all P1-3..P1-9 + S1 resolved; 3 new requirements delivered.
|
|
||||||
2. Audit: reconstruction, file discipline, branch hygiene, commit discipline.
|
|
||||||
3. Complete: update REQUIREMENTS.md (REQ-76..99), ROADMAP.md, PROJECT.md. Tag `v1.8.0`. Update floating `v1.8` + `v1` tags. Bump `uses:` to `@v1.8`.
|
|
||||||
@@ -56,7 +56,7 @@ Finalize the architecture to v1.0 (resolve all 11 open design decisions in
|
|||||||
`docs/architecture.md` §13) and prove the locked commitments with one
|
`docs/architecture.md` §13) and prove the locked commitments with one
|
||||||
end-to-end v1 implementation spike:
|
end-to-end v1 implementation spike:
|
||||||
|
|
||||||
- **One L1 module** (`l1-s3`) — substrate-agnostic, IR-typed interface.
|
- **One L1 module** (`l1-s3`) — engine-agnostic, IR-typed interface.
|
||||||
- **One L2 thin-composition** (`l2-static-assets`) — references the L1.
|
- **One L2 thin-composition** (`l2-static-assets`) — references the L1.
|
||||||
- **Terraform adapter** — compiles the IR to a real `terraform plan`
|
- **Terraform adapter** — compiles the IR to a real `terraform plan`
|
||||||
against AWS via OIDC (no long-lived credentials, per §12.5).
|
against AWS via OIDC (no long-lived credentials, per §12.5).
|
||||||
@@ -296,6 +296,213 @@ and test each.
|
|||||||
Milestone COMPLETE gate: review → ship `v1.8.0` (feature milestone, next
|
Milestone COMPLETE gate: review → ship `v1.8.0` (feature milestone, next
|
||||||
minor per run.md — v1.7 shipped `v1.7.0`) → audit.
|
minor per run.md — v1.7 shipped `v1.7.0`) → audit.
|
||||||
|
|
||||||
|
## Objective for Milestone v1.9 (complete, tag `v1.9.0`)
|
||||||
|
|
||||||
|
Production-grade progression: contract interpolation, per-environment
|
||||||
|
promotion without field editing, stub implementation, and P1-1
|
||||||
|
remediation. The v1.8 milestone shipped encryption/deletion-protection by
|
||||||
|
default, uptime, decommission, and engineering standards but left four
|
||||||
|
gaps that v1.9 closes (user-directed, 2026-07-23):
|
||||||
|
|
||||||
|
1. **Design doc refresh.** `core/hitl_matrix_design.md` and
|
||||||
|
`core/audit_ledger_design.md` are stale — both still describe the
|
||||||
|
v1.1 spike scope ("dev-only; HITL not exercised"; "spike scope =
|
||||||
|
hash chain + outbox write; Object Lock + JWS are v1.2"). v1.9 brings
|
||||||
|
them up to date with the shipped v1.8 platform and the v1.9 wiring.
|
||||||
|
2. **Contract interpolation (variable expansion).** Contracts cannot
|
||||||
|
reference environment onboarding values today — bucket names, account
|
||||||
|
IDs, regions are hardcoded literals. v1.9 adds `${env.<field>}` and
|
||||||
|
`${contract.<field>}` expansion in the resolver, sourced from the
|
||||||
|
environment onboarding JSON. Naming patterns like
|
||||||
|
`acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}`
|
||||||
|
become expressible. The S3 bucket naming-pattern requirement is the
|
||||||
|
binding example.
|
||||||
|
3. **Per-environment CI jobs (no field editing for promotion).** Today a
|
||||||
|
promotion dev → qa requires editing the `environment:` field in the
|
||||||
|
contract YAML. v1.9 ships a hybrid model: (a) per-environment contract
|
||||||
|
files (`.acdl/static-assets.dev.yaml`, `...qa.yaml`, etc.) and (b) an
|
||||||
|
`environment` `workflow_call` input on the reusable deploy workflow
|
||||||
|
that overrides the contract's environment at load time. There is one
|
||||||
|
CI job per environment, each pointing at its respective contract (or
|
||||||
|
the same contract + the env input). Promotion = running the matching
|
||||||
|
job; no field editing.
|
||||||
|
4. **Stub implementation.** Identify and implement the stubbed
|
||||||
|
functionality: `separation_of_duties.route_halt_artifact` (logs only →
|
||||||
|
real SNS + outbox event); HITL qa/prod/dr pre-execution attestation
|
||||||
|
gates (only decommission SRE gates are wired today); the full
|
||||||
|
8-concern attestation matrix (offline-testable subset implemented;
|
||||||
|
operator-supplied concerns accept signed evidence artifacts); the Wiz
|
||||||
|
adapter (stub → real API client with graceful degrade); the Kyverno
|
||||||
|
adapter (fleshed out translator, still inactive for Terraform-only
|
||||||
|
stacks). The audit-ledger S3 Object Lock + JWS + async worker + DLQ +
|
||||||
|
daily checkpoints build-out is **deferred** to a future milestone
|
||||||
|
(D-083) — it requires non-offline-testable AWS infra (Object Lock
|
||||||
|
bucket, KMS signing key, SQS DLQ, Lambda worker).
|
||||||
|
5. **Post-hoc requirement from previous milestones.** P1-1 from the v1.2
|
||||||
|
review (adapter ECS/ALB/VPC hardcoded defaults — `desired_count = 1`,
|
||||||
|
`launch_type = "FARGATE"`, `target_type = "ip"`,
|
||||||
|
`load_balancer_type = "application"`, `family = "app"`, `Name = ...`
|
||||||
|
— should be parameterized via the L1 interfaces, deferred to v1.3,
|
||||||
|
never implemented) is closed. The adapter becomes a thin translator;
|
||||||
|
the defaults move into `interface.json` inputs.
|
||||||
|
|
||||||
|
The milestone also reconstructs `.ciagent/REVIEW.md`, which still holds
|
||||||
|
v1.2 review content (v1.3–v1.8 reviews were not persisted). The v1.9
|
||||||
|
review overwrites it with current milestone content; a note records the
|
||||||
|
historical gap (no git-history rewrite).
|
||||||
|
|
||||||
|
## Milestone v1.9 Phases
|
||||||
|
|
||||||
|
| Phase | Name | Goal |
|
||||||
|
|-------|------|------|
|
||||||
|
| 39 | design-doc-refresh-and-p1-1-parameterization | Refresh `hitl_matrix_design.md` + `audit_ledger_design.md` to current. Move adapter ECS/ALB/VPC hardcoded defaults into L1 `interface.json` inputs (P1-1 closure). |
|
||||||
|
| 40 | contract-interpolation | `${env.<field>}` + `${contract.<field>}` resolver expansion from environment onboarding JSON. Environment JSON schema. Sample contracts use naming patterns (region + account id + environment). |
|
||||||
|
| 41 | per-environment-ci-jobs | Per-env contract files + `environment` workflow_call input on the deploy workflow. 1 CI job per environment (dev/qa/prod/dr), each pointing at its respective contract. HITL attestation gate structure wired (qa/prod/dr). |
|
||||||
|
| 42 | stub-implementation | `route_halt_artifact` real (SNS + outbox). HITL qa/prod/dr attestation gates. 8-concern attestation matrix (offline-testable subset). Wiz real client. Kyverno translator fleshed out. |
|
||||||
|
| 43 | verify-review-audit-complete | 4-layer verify. Multi-persona review. Audit. Complete v1.9 (tag `v1.9.0`, floating tags, `uses:` bump `@v1.6` → `@v1.9`). |
|
||||||
|
|
||||||
|
Milestone COMPLETE gate: review → ship `v1.9.0` (feature milestone, next
|
||||||
|
minor per run.md — v1.8 shipped `v1.8.0`) → audit.
|
||||||
|
|
||||||
|
## Patch v1.9.1 (complete, tag `v1.9.1`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Two leadership-facing presentation
|
||||||
|
decks (How the Platform Works + The Developer Experience) for senior
|
||||||
|
leadership (CTO, Head of Cloud, Head of Infrastructure, Head of DevOps).
|
||||||
|
Each deck has a full markdown source of truth (with speaker notes + mermaid
|
||||||
|
diagrams) and a lean Marp deck (no speaker notes, embedded PNG diagrams). A
|
||||||
|
README documents the 3-step slide creation process (full markdown → Marp
|
||||||
|
synthesis → PPTX export) with conventions, build commands, and maturity
|
||||||
|
framing rules. No code changes; 494 tests pass; `run_ci.sh` +
|
||||||
|
`run_platform.sh --check-only` green.
|
||||||
|
|
||||||
|
## Patch v1.9.2 (complete, tag `v1.9.2`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Applies the S&P Global Energy brand
|
||||||
|
visual identity to both Marp presentation decks. Brand colors extracted
|
||||||
|
from the live spglobal.com compiled Tailwind CSS and SVG logo: red-core
|
||||||
|
`#D6002A`, grey-90 `#1B1B1B`, grey-80 `#2E2E2E`, grey-5 `#F0F0F0`, Akkurat
|
||||||
|
Pro corporate typeface. Title headers changed to full platform name.
|
||||||
|
Footer changed from 'Confidential · For Senior Leadership' to 'Internal'.
|
||||||
|
Title slide subtitle removed. Last DX slide renamed from 'The Outcome for
|
||||||
|
Leadership' to 'The Desired Outcomes'. Marp `theme: default` kept as base.
|
||||||
|
No code changes; 494 tests pass; `run_ci.sh` + `run_platform.sh --check-only`
|
||||||
|
green.
|
||||||
|
|
||||||
|
## Patch v1.9.3 (complete, tag `v1.9.3`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Renders both Marp presentation decks
|
||||||
|
to self-contained HTML (committed to `docs/presentations/`, base64-embedded
|
||||||
|
images, full S&P Global Energy brand theme) and PPTX (uploaded to the Gitea
|
||||||
|
release as downloadable attachments). The HTML files are viewable in any
|
||||||
|
browser and on the git forge — they render the red accent bar, dark
|
||||||
|
title-slide background, red H1 headings, and Akkurat Pro font stack. README
|
||||||
|
updated to document HTML as committed artifacts (re-render when Marp source
|
||||||
|
changes) and PPTX as release attachments (binary, not committed to git).
|
||||||
|
No code changes; 494 tests pass; `run_ci.sh` + `run_platform.sh --check-only`
|
||||||
|
green.
|
||||||
|
|
||||||
|
## Patch v1.9.4 (complete, tag `v1.9.4`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Two categories of changes:
|
||||||
|
|
||||||
|
1. **Presentation slide updates** — title slide redesigned (deck title as H1
|
||||||
|
slightly bigger, 'Agentic Cloud Delivery Platform' as H3 subtitle on dark
|
||||||
|
background). DX deck: removed Local Reproducibility slide (not beneficial
|
||||||
|
for DX narrative), redesigned Safe Promotion Path with side-by-side
|
||||||
|
HTML table layout for Approaches A and B, 'an agent' → 'an AI agent' on
|
||||||
|
slides 2 and 3, What a Developer Does diagram floated to the right side.
|
||||||
|
Running header simplified to just the deck name.
|
||||||
|
|
||||||
|
2. **Complete removal of a compliance framework** — all references to a
|
||||||
|
specific healthcare compliance framework removed from 25 files
|
||||||
|
across the codebase: presentation source files (Marp + full markdown),
|
||||||
|
all module READMEs (S3, RDS, ECR, ECS, VPC, IAM, KMS, CloudFront, ALB,
|
||||||
|
uptime), top-level README, consumer guide, docs index, module standards.
|
||||||
|
Compliance milestone lists now read: GDPR, SOX, SOC2, DORA. All section
|
||||||
|
references from that framework removed from compliance annotations.
|
||||||
|
Rendered HTML decks re-generated from updated Marp source.
|
||||||
|
|
||||||
|
No code changes; 494 tests pass; `run_ci.sh` + `run_platform.sh --check-only`
|
||||||
|
green. PPTX files uploaded to Gitea release.
|
||||||
|
|
||||||
|
## Patch v1.9.5 (complete, tag `v1.9.5`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. 9 requirements implemented:
|
||||||
|
|
||||||
|
1. DX closing slide strengthened with 'Infrastructure as a utility, not a
|
||||||
|
craft' bullet — conveys the full vision (infrastructure consumed, not
|
||||||
|
maintained; platform compounds value over time).
|
||||||
|
2. PW Problem slide: 'moving a merged change' → 'promoting a change'.
|
||||||
|
3. PW Problem slide: added 'Red tape' and 'Scalability without increasing
|
||||||
|
headcount' bullets (4 frictions, not 2).
|
||||||
|
4. PW Roadmap slide: redesigned with side-by-side HTML table layout
|
||||||
|
(Testing | Planned), 16px font, no overflow.
|
||||||
|
5. PW deck: new slide 'What This Platform Is — and Isn't' after North Star
|
||||||
|
(sovereign boundary, infrastructure as utility, 4 anti-goals). PW deck
|
||||||
|
now 16 slides.
|
||||||
|
6. Maturity nomenclature: 'Available today'/'shipped' → 'Testing' across
|
||||||
|
both decks + source markdown. New .testing badge (blue/teal). The
|
||||||
|
platform has 0 consumer adoption — 'shipped' was inaccurate.
|
||||||
|
7. Global: 'substrate' → 'engine' across entire project (88 matches, 30+
|
||||||
|
files including .ciagent/, docs/, modules/, adapters/, schemas/, code).
|
||||||
|
8. Presentation files only: 'forge' → 'VCS' (6 occurrences in 4 files).
|
||||||
|
'forge' retained in all technical docs and code.
|
||||||
|
9. New .agentic badge (purple/violet) appended to agentic features in both
|
||||||
|
decks: confidence signal, autonomous dev, pattern recognition, dynamic
|
||||||
|
module creation, citizen developer surface, auto-promotion.
|
||||||
|
|
||||||
|
Also: Change Request ID format changed from 'CR-2026-001' to 'CHG0678912'
|
||||||
|
across presentation files, consumer guide, and test fixtures.
|
||||||
|
|
||||||
|
No code changes (test fixture strings only); 494 tests pass; `run_ci.sh` +
|
||||||
|
`run_platform.sh --check-only` green. PPTX files uploaded to Gitea release.
|
||||||
|
|
||||||
|
## Patch v1.9.6 (complete, tag `v1.9.6`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Both Marp presentation decks
|
||||||
|
consolidated to 10 high-impact slides each — every slide high-impact, fluff
|
||||||
|
eliminated.
|
||||||
|
|
||||||
|
**How The Platform Works (16 → 10):**
|
||||||
|
- Merged Problem + North Star + What It Is/Isn't → 1 slide (4 frictions →
|
||||||
|
North Star → 3 success criteria → 2 anti-goals)
|
||||||
|
- Merged Policy & Security + Secure by Default → 'Security by Construction'
|
||||||
|
- Merged Immutable Audit + Human-in-the-Loop → 'Accountability & Audit'
|
||||||
|
- Folded Observability, Platform-Managed Environments, Portability into
|
||||||
|
existing slides as bullets
|
||||||
|
- Added 'The Vision Realized' closing slide
|
||||||
|
|
||||||
|
**The Developer Experience (15 → 10):**
|
||||||
|
- Merged What Dev Does + Contract + No Platform Code → 'The Contract — The
|
||||||
|
Entire Consumer Surface'
|
||||||
|
- Merged Instant Feedback + Deploy Outputs → 'The Developer Feedback Loop'
|
||||||
|
- Merged Safe Promotion Path + Rising Bar → 1 slide
|
||||||
|
- Cut Citizen Developer Experience standalone (mentioned on slides 2 + 10)
|
||||||
|
- Kept Versioned Releases, Friendly Onboarding, Safe Decommission
|
||||||
|
|
||||||
|
**Also:** Removed '5-line YAML' claim from both decks (credibility — complex
|
||||||
|
stacks require more lines). Source markdown files unchanged (remain complete
|
||||||
|
reference with speaker notes for all original slides).
|
||||||
|
|
||||||
|
No code changes; 494 tests pass; `run_ci.sh` + `run_platform.sh --check-only`
|
||||||
|
green. PPTX files uploaded to Gitea release.
|
||||||
|
|
||||||
|
## Patch v1.9.7 (complete, tag `v1.9.7`)
|
||||||
|
|
||||||
|
Docs-only NFR patch on the v1.9 line. Created two talking points markdown
|
||||||
|
files — one per deck — distilling the source of truth (speaker notes +
|
||||||
|
content) into presenter-ready cues indexed by the Marp deck's 10-slide
|
||||||
|
structure. Each file has one section per Marp slide with 3-6 talking point
|
||||||
|
bullets (punchy, actionable cues) + a key takeaway per slide. The talking
|
||||||
|
points are the middle layer between the source of truth (full detail) and
|
||||||
|
the Marp deck (what the audience sees). README updated from 3-step to 4-step
|
||||||
|
process (added Step 4: talking points), with updated diagram, directory
|
||||||
|
layout, checklist, and decks table.
|
||||||
|
|
||||||
|
No code changes; 494 tests pass; `run_ci.sh` + `run_platform.sh --check-only`
|
||||||
|
green.
|
||||||
|
|
||||||
## Requirements
|
## Requirements
|
||||||
|
|
||||||
### v1.0 (Prior milestone — the demo)
|
### v1.0 (Prior milestone — the demo)
|
||||||
@@ -309,7 +516,7 @@ appendix below. The demo is **archived** to `demo/` in Phase 06.
|
|||||||
New requirements REQ-16..REQ-28 — see `REQUIREMENTS.md` §v1.1. Summary:
|
New requirements REQ-16..REQ-28 — see `REQUIREMENTS.md` §v1.1. Summary:
|
||||||
|
|
||||||
- **REQ-16:** Architecture finalized to v1.0 (11 open decisions resolved).
|
- **REQ-16:** Architecture finalized to v1.0 (11 open decisions resolved).
|
||||||
- **REQ-17:** Target Stack IR defined as JSON Schema; substrate-agnostic.
|
- **REQ-17:** Target Stack IR defined as JSON Schema; engine-agnostic.
|
||||||
- **REQ-18:** PolicyCheckResult normalized schema defined; Checkov adapter.
|
- **REQ-18:** PolicyCheckResult normalized schema defined; Checkov adapter.
|
||||||
- **REQ-19:** Six-input confidence signal specified with per-env thresholds
|
- **REQ-19:** Six-input confidence signal specified with per-env thresholds
|
||||||
(dev 0.50 / qa 0.75 / prod 0.90 / dr 0.95) and severity→penalty mapping.
|
(dev 0.50 / qa 0.75 / prod 0.90 / dr 0.95) and severity→penalty mapping.
|
||||||
@@ -329,7 +536,7 @@ New requirements REQ-16..REQ-28 — see `REQUIREMENTS.md` §v1.1. Summary:
|
|||||||
- **REQ-27:** One end-to-end contract submission → contract→IR resolution →
|
- **REQ-27:** One end-to-end contract submission → contract→IR resolution →
|
||||||
`terraform plan` → Checkov → confidence signal → evidence event to outbox.
|
`terraform plan` → Checkov → confidence signal → evidence event to outbox.
|
||||||
- **REQ-28:** Spike verification proves the IR-shaped commitments hold (no
|
- **REQ-28:** Spike verification proves the IR-shaped commitments hold (no
|
||||||
polyglot mess; the adapter is the only substrate-specific code).
|
polyglot mess; the adapter is the only engine-specific code).
|
||||||
|
|
||||||
### v1.2 (Prior milestone — platform hardening + first real consumer deployment, complete)
|
### v1.2 (Prior milestone — platform hardening + first real consumer deployment, complete)
|
||||||
|
|
||||||
@@ -364,6 +571,29 @@ New requirements REQ-43..REQ-45 — see `REQUIREMENTS.md` §v1.4. Summary:
|
|||||||
- **REQ-45:** `scripts/run_platform.sh` streams terraform/checkov output by
|
- **REQ-45:** `scripts/run_platform.sh` streams terraform/checkov output by
|
||||||
default (with `--quiet` for log-only mode). Both workflows byte-identical.
|
default (with `--quiet` for log-only mode). Both workflows byte-identical.
|
||||||
|
|
||||||
|
## Key Decisions (v1.9)
|
||||||
|
|
||||||
|
Resolved at the CLARIFY stage (full autonomy — all within locked
|
||||||
|
constraints or user-directed scope). New v1.9 decisions (numbered
|
||||||
|
D-080+ to avoid collision with v1.8 research decisions D-073..D-077):
|
||||||
|
|
||||||
|
| ID | Decision | Rationale | Outcome |
|
||||||
|
|----|----------|-----------|---------|
|
||||||
|
| D-080 | New milestone v1.9 (feature); ship tag `v1.9.0`. | v1.8 is complete (audit PASS, tag v1.8.0). The work (design doc updates + interpolation + per-env CI + stubs + P1-1) is a new feature milestone, not v1.8 post-hoc patching. | 5 phases (39–43) in one milestone. |
|
||||||
|
| D-081 | Interpolation syntax: `${env.<field>}` + `${contract.<field>}` (dotted paths supported, e.g. `${env.state_backend.bucket}`). Expanded by the resolver post-schema-validation, pre-IR-resolution. Fail loud on unresolved tokens (`ValueError`). | Shell-style syntax is familiar, unambiguous, and has no conflict with YAML or the contract schema. The `env` context is the loaded environment onboarding JSON; `contract` is the contract dict. | Phase 40 implements the expansion + environment JSON schema. |
|
||||||
|
| D-082 | Hybrid per-environment promotion model: (a) per-env contract files AND (b) an `environment` `workflow_call` input on the reusable deploy workflow that overrides the contract's environment at load time. One CI job per environment. | User chose to support both shapes. Per-env contracts let env-specific values differ via interpolation; the env input lets a single contract be promoted without editing. Promotion = running the matching job; no `environment:` field editing. | Phase 41 ships per-env contracts + the env input + caller-workflow docs. |
|
||||||
|
| D-083 | Audit ledger S3 Object Lock + JWS detached signatures + async worker + DLQ + daily checkpoints **deferred** to a future milestone. | Requires non-offline-testable AWS infra (Object Lock bucket, KMS signing key, SQS DLQ, Lambda worker). The hash-chain + DynamoDB-outbox path remains the v1.9 production audit record. `audit_ledger_design.md` marks this clearly. | Phase 39 updates the design doc; no build-out in v1.9. |
|
||||||
|
| D-084 | 8-concern attestation matrix: offline-testable concerns (contract NFRs, schema validity, policy pass) run for real; operator-supplied concerns (k6 load test, DR drill, FinOps forecast) accept signed evidence artifacts validated for freshness + schema, failing loud if missing/expired for prod/dr. | The platform cannot run live load tests / DR drills / FinOps forecasts inline. Accepting signed evidence artifacts with freshness + schema validation is the regulatorily-defensible middle ground. | Phase 42 implements `core/attestation_matrix.py`. |
|
||||||
|
| D-085 | P1-1 closure: adapter ECS/ALB/VPC hardcoded defaults (`desired_count = 1`, `launch_type = "FARGATE"`, `target_type = "ip"`, `load_balancer_type = "application"`, `family = "app"`, `Name = ...`) move into L1 `interface.json` inputs with defaults. The adapter reads inputs (falling back to interface defaults) and is a thin translator. | P1-1 was flagged in the v1.2 review (deferred to v1.3, never implemented). Defaults belong in the L1 interface, not the adapter. | Phase 39 closes P1-1. |
|
||||||
|
| D-086 | `.ciagent/REVIEW.md` reconstructed at v1.9 complete; v1.3–v1.8 reviews noted as not-persisted (no git-history rewrite). | REVIEW.md still holds v1.2 content — later milestone reviews were not persisted or were overwritten. The v1.9 review overwrites it with current content; a note records the historical gap. | Phase 43 reconstructs REVIEW.md. |
|
||||||
|
|
||||||
|
### CLARIFY auto-resolved parameters (full autonomy)
|
||||||
|
|
||||||
|
| Parameter | Value | Rationale |
|
||||||
|
|---|---|---|
|
||||||
|
| Per-env `qa.json/prod.json/dr.json` account_id | `000000000000` placeholder + stderr warning at load if account_id is `000000000000` and env ≠ dev | Consistent with `dev.json`; prompts real binding without breaking offline tests. |
|
||||||
|
| SNS topic for `route_halt_artifact` | Defined in `terraform/platform/main.tf` AND code reads `ACDL_SOD_HALT_TOPIC_ARN` | Consistent with the existing Lambda/KMS/Secrets pattern (Terraform defines, code reads env). |
|
||||||
|
|
||||||
## Constraints
|
## Constraints
|
||||||
|
|
||||||
- **Forge:** Gitea at `https://git.cloudinit.dev`, org `continuous-intelligence`.
|
- **Forge:** Gitea at `https://git.cloudinit.dev`, org `continuous-intelligence`.
|
||||||
@@ -371,8 +601,8 @@ New requirements REQ-43..REQ-45 — see `REQUIREMENTS.md` §v1.4. Summary:
|
|||||||
- **Cloud:** AWS via OIDC federation. **Long-lived credentials are forbidden**
|
- **Cloud:** AWS via OIDC federation. **Long-lived credentials are forbidden**
|
||||||
(§12.5). The v1.1 spike uses a temporary long-lived key **once** to bootstrap
|
(§12.5). The v1.1 spike uses a temporary long-lived key **once** to bootstrap
|
||||||
OIDC (waiver D-034), then rotates it.
|
OIDC (waiver D-034), then rotates it.
|
||||||
- **Substrate:** Terraform adapter in v1 (the only adapter). L1/L2 are
|
- **Angine:** Terraform adapter in v1 (the only adapter). L1/L2 are
|
||||||
substrate-agnostic in shape; the adapter is the only substrate-specific code.
|
engine-agnostic in shape; the adapter is the only engine-specific code.
|
||||||
- **State:** S3 (state files) + DynamoDB (locking), single-region in v1.
|
- **State:** S3 (state files) + DynamoDB (locking), single-region in v1.
|
||||||
- **Environments:** dev (autonomous) → qa (QA HITL) → prod (SRE HITL) → dr
|
- **Environments:** dev (autonomous) → qa (QA HITL) → prod (SRE HITL) → dr
|
||||||
(SRE HITL). **Staging does not exist** (Path A locked).
|
(SRE HITL). **Staging does not exist** (Path A locked).
|
||||||
@@ -397,7 +627,7 @@ New requirements REQ-43..REQ-45 — see `REQUIREMENTS.md` §v1.4. Summary:
|
|||||||
vision/architecture sources, pulled from `origin/main` at the start of v1.1.
|
vision/architecture sources, pulled from `origin/main` at the start of v1.1.
|
||||||
- The v1.0 demo (tag `v1.1.0`) is the reference of intent — it proved the
|
- The v1.0 demo (tag `v1.1.0`) is the reference of intent — it proved the
|
||||||
shape (L1/L2/contract/confidence/evidence/HITL) on stubs. v1.1 replaces the
|
shape (L1/L2/contract/confidence/evidence/HITL) on stubs. v1.1 replaces the
|
||||||
stubs with the real platform substrate.
|
stubs with the real platform engine.
|
||||||
|
|
||||||
## Key Decisions (v1.1)
|
## Key Decisions (v1.1)
|
||||||
|
|
||||||
@@ -476,8 +706,8 @@ or user-directed scope). New v1.7 decisions:
|
|||||||
| BA.C | On-call / operational ownership | **Decided.** Platform on-call = Infra & Ops rotation. Escalation: L3A/L3B halt → platform on-call pager (Sev2); consumer-visible outage → consumer on-call (Sev1) with platform on-call support. Consumer on-call relationship is contractual, defined at onboarding (BA.E). |
|
| BA.C | On-call / operational ownership | **Decided.** Platform on-call = Infra & Ops rotation. Escalation: L3A/L3B halt → platform on-call pager (Sev2); consumer-visible outage → consumer on-call (Sev1) with platform on-call support. Consumer on-call relationship is contractual, defined at onboarding (BA.E). |
|
||||||
| BA.D | Cost / capacity governance | **Decided.** Cloud cost owner = Infra & Ops FinOps. Per-contract consumption reported monthly. Runaway spend: hard halt at 120% of contract-declared budget envelope via the confidence signal (cost is one of the 6 inputs); override = FinOps + SRE joint sign-off. |
|
| BA.D | Cost / capacity governance | **Decided.** Cloud cost owner = Infra & Ops FinOps. Per-contract consumption reported monthly. Runaway spend: hard halt at 120% of contract-declared budget envelope via the confidence signal (cost is one of the 6 inputs); override = FinOps + SRE joint sign-off. |
|
||||||
| BA.E | Consumer onboarding | **Decided.** Two paths: developer (L3A) — `getting-started` walks through contract schema + central pipeline template; citizen developer (L3B) — onboarding grants a scoped agent + skill catalog, no workflow authoring. Both end in a sandbox dev submission that must pass the confidence gate before the consumer is promoted. |
|
| BA.E | Consumer onboarding | **Decided.** Two paths: developer (L3A) — `getting-started` walks through contract schema + central pipeline template; citizen developer (L3B) — onboarding grants a scoped agent + skill catalog, no workflow authoring. Both end in a sandbox dev submission that must pass the confidence gate before the consumer is promoted. |
|
||||||
| BA.F | Cross-platform evolution | **Decided.** The contract schema, IR, PolicyCheckResult, confidence signal, and audit stream are portable (substrate- and forge-agnostic). Forge-specific code: workflow YAML, OIDC trust, CODEOWNERS, Environments. A second forge (e.g., GitLab) requires a forge adapter + a workflow-template translator; no change to L1/L2/IR/confidence/audit. |
|
| BA.F | Cross-platform evolution | **Decided.** The contract schema, IR, PolicyCheckResult, confidence signal, and audit stream are portable (engine- and forge-agnostic). Forge-specific code: workflow YAML, OIDC trust, CODEOWNERS, Environments. A second forge (e.g., GitLab) requires a forge adapter + a workflow-template translator; no change to L1/L2/IR/confidence/audit. |
|
||||||
| Q1.3 | OpenTofu timing | **Decided (deferred).** Not in v1 or v1.1. The substrate abstraction (§12) makes OpenTofu a future adapter, not an architecture change. Revisit when an OpenTofu adapter is requested; no version committed. |
|
| Q1.3 | OpenTofu timing | **Decided (deferred).** Not in v1 or v1.1. The engine abstraction (§12) makes OpenTofu a future adapter, not an architecture change. Revisit when an OpenTofu adapter is requested; no version committed. |
|
||||||
|
|
||||||
## Appendix — Prior milestone (v1.0 demo) decisions
|
## Appendix — Prior milestone (v1.0 demo) decisions
|
||||||
|
|
||||||
|
|||||||
@@ -39,7 +39,7 @@
|
|||||||
|
|
||||||
### Category: Architecture Finalization
|
### Category: Architecture Finalization
|
||||||
- **REQ-16:** Architecture reaches v1.0 — all 11 open decisions in `docs/architecture.md` §13 are resolved and recorded in `PROJECT.md` (W1.A, W1.B, W2.A, W3.D, W3.E, BA.A–F, OpenTofu timing).
|
- **REQ-16:** Architecture reaches v1.0 — all 11 open decisions in `docs/architecture.md` §13 are resolved and recorded in `PROJECT.md` (W1.A, W1.B, W2.A, W3.D, W3.E, BA.A–F, OpenTofu timing).
|
||||||
- **REQ-17:** Target Stack IR is defined as a JSON Schema under `schemas/ir.schema.json`; substrate-agnostic (resources, relationships, composition max-depth-5, policy hooks).
|
- **REQ-17:** Target Stack IR is defined as a JSON Schema under `schemas/ir.schema.json`; engine-agnostic (resources, relationships, composition max-depth-5, policy hooks).
|
||||||
- **REQ-18:** `PolicyCheckResult` normalized schema is defined under `schemas/policy_check_result.schema.json`; a Checkov adapter translates Checkov JSON to this schema.
|
- **REQ-18:** `PolicyCheckResult` normalized schema is defined under `schemas/policy_check_result.schema.json`; a Checkov adapter translates Checkov JSON to this schema.
|
||||||
- **REQ-19:** Six-input confidence signal is specified under `platform/confidence_signal.py` with per-env thresholds (dev 0.50 / qa 0.75 / prod 0.90 / dr 0.95) and severity→penalty mapping (critical=hard override, high=-0.2, medium=-0.05, low=-0.01, info=0.0).
|
- **REQ-19:** Six-input confidence signal is specified under `platform/confidence_signal.py` with per-env thresholds (dev 0.50 / qa 0.75 / prod 0.90 / dr 0.95) and severity→penalty mapping (critical=hard override, high=-0.2, medium=-0.05, low=-0.01, info=0.0).
|
||||||
- **REQ-20:** Tiered audit ledger design is authored: S3 Object Lock (compliance mode, 7-yr) + DynamoDB outbox (RPO=0, JWS detached signatures, `prev_event_hash` chain, daily checkpoints).
|
- **REQ-20:** Tiered audit ledger design is authored: S3 Object Lock (compliance mode, 7-yr) + DynamoDB outbox (RPO=0, JWS detached signatures, `prev_event_hash` chain, daily checkpoints).
|
||||||
@@ -56,7 +56,7 @@
|
|||||||
|
|
||||||
### Category: v1 Spike — End-to-End
|
### Category: v1 Spike — End-to-End
|
||||||
- **REQ-27:** One end-to-end contract submission (`contracts/spike.yaml` for `l2-static-assets`) flows through: contract schema validation → contract→IR resolution → `terraform plan` (real AWS) → Checkov `PolicyCheckResult` → confidence signal → evidence event written to the DynamoDB outbox.
|
- **REQ-27:** One end-to-end contract submission (`contracts/spike.yaml` for `l2-static-assets`) flows through: contract schema validation → contract→IR resolution → `terraform plan` (real AWS) → Checkov `PolicyCheckResult` → confidence signal → evidence event written to the DynamoDB outbox.
|
||||||
- **REQ-28:** Spike verification (`scripts/verify_phase10.sh`) proves the IR-shaped commitments hold: the adapter is the only substrate-specific code; no polyglot mess; the L1 content, contract YML, and thin-composition tree are substrate-agnostic.
|
- **REQ-28:** Spike verification (`scripts/verify_phase10.sh`) proves the IR-shaped commitments hold: the adapter is the only engine-specific code; no polyglot mess; the L1 content, contract YML, and thin-composition tree are engine-agnostic.
|
||||||
|
|
||||||
## Out of Scope (v1.1)
|
## Out of Scope (v1.1)
|
||||||
|
|
||||||
@@ -240,6 +240,38 @@
|
|||||||
| Adversarial tamper-proofing of evidence | Hash chain is demonstrative; not cryptographically secure against a determined attacker. |
|
| Adversarial tamper-proofing of evidence | Hash chain is demonstrative; not cryptographically secure against a determined attacker. |
|
||||||
| Multi-tenant isolation | Out of demo scope. |
|
| Multi-tenant isolation | Out of demo scope. |
|
||||||
|
|
||||||
|
## v1.9 (complete — design doc refresh + contract interpolation + per-env CI jobs + stub implementation + P1-1 remediation, tag `v1.9.0`)
|
||||||
|
|
||||||
|
### Category: Design Doc Refresh
|
||||||
|
- **REQ-100:** `core/hitl_matrix_design.md` is up to date: the "dev-only spike" framing is replaced with the v1.9 wired-gates reality (qa/prod/dr `workflow_dispatch` approval gates + CODEOWNERS routing + outbox-based SoD); the 8-concern attestation matrix is marked implemented (offline-testable subset) with operator-supplied concerns noted; the spike-scope note is updated. No stale "v1.2 wires the gates" language remains.
|
||||||
|
- **REQ-101:** `core/audit_ledger_design.md` is up to date: the hash-chain + DynamoDB-outbox path is marked shipped + production (since v1.8); the S3 Object Lock + JWS + async worker + DLQ + daily checkpoints build-out is clearly labeled "Deferred to a future milestone" (D-083); the RPO/RTO table reflects the v1.9 state.
|
||||||
|
|
||||||
|
### Category: P1-1 Remediation
|
||||||
|
- **REQ-102:** The adapter (`adapters/terraform/adapter.py`) contains no resource-type-specific hardcoded defaults for ECS/ALB/VPC resources — `desired_count`, `launch_type`, `target_type`, `load_balancer_type`, `family`, and `Name` tag values are read from L1 `interface.json` inputs (with defaults declared in the interface). The adapter is a thin translator. An L1 with an overridden `desired_count: 3` emits `desired_count = 3`; the default emits `desired_count = 1` via the interface default, not an adapter hardcode (P1-1 closed).
|
||||||
|
|
||||||
|
### Category: Contract Interpolation
|
||||||
|
- **REQ-103:** The contract resolver (`core/contract_resolver.py`) expands `${env.<field>}` and `${contract.<field>}` tokens in contract string values (including dotted paths like `${env.state_backend.bucket}`) after schema validation and before IR resolution. The `env` context is the loaded `core/environments/<contract.environment>.json`; the `contract` context is the contract dict. Unresolved tokens raise `ValueError` (fail loud). Sample contracts use naming patterns that include region, account id, and environment (e.g. `acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}`).
|
||||||
|
- **REQ-104:** An environment JSON schema `schemas/environment.schema.json` (draft 2020-12) defines the environment file shape (`name`, `account_id`, `region`, `state_backend`, `network`, `runner_role_arn`, `autonomy`, `confidence_threshold`). `core/environments/dev.json` validates against it. `qa.json`, `prod.json`, `dr.json` placeholder bindings exist (autonomy `attested`, thresholds 0.75/0.90/0.95).
|
||||||
|
|
||||||
|
### Category: Per-Environment CI Jobs
|
||||||
|
- **REQ-105:** Per-environment contract files exist for each sample module (`contracts/static-assets.{dev,qa,prod,dr}.yaml` and `contracts/microservice.{dev,qa,prod,dr}.yaml`), each setting `environment:` to its own name and using interpolation for env-specific values. The existing `contracts/static-assets.yaml` + `contracts/microservice.yaml` remain as the dev default for backwards compatibility.
|
||||||
|
- **REQ-106:** The reusable deploy workflow (`.github/workflows/deploy.yml` + `.gitea/workflows/deploy.yml`, byte-identical) declares an `environment` `workflow_call` input (enum dev/qa/prod/dr, default empty). When non-empty, `scripts/run_platform.sh --environment <name>` overrides the contract's `environment` field at load time (before interpolation). A consumer repo's caller workflow has one job per environment, each pointing at its respective contract (or the same contract + the env input). Promotion = running the matching job; no `environment:` field editing. `docs/CONSUMER_GUIDE.md` documents the per-env caller workflow pattern.
|
||||||
|
|
||||||
|
### Category: Stub Implementation
|
||||||
|
- **REQ-107:** `core/separation_of_duties.py` `route_halt_artifact` is a real implementation: publishes to an SNS topic `acdl-sod-halt` (ARN from `ACDL_SOD_HALT_TOPIC_ARN`); when unset, falls back to a structured stderr emission + a `SEPARATION_OF_DUTIES_VIOLATION` event write to the DynamoDB outbox via `outbox_writer.write_event`. No silent print-only stub. The SNS topic is defined in `terraform/platform/main.tf`.
|
||||||
|
- **REQ-108:** HITL qa/prod/dr pre-execution attestation gates are wired via `core/hitl_gates.py` (`attest(contract_id, env, approver, evidence)`). The gate records the approver (`gitea.actor` / `github.actor`) to the outbox (`approver_qa` / `approver_prod` / `approver_dr` attributes per `audit_ledger_design.md`), runs the separation-of-duties check on prod, and returns `(ok, reason)`. `scripts/run_platform.sh` calls `hitl_gates.attest` before apply for qa/prod/dr (dev skips). The workflow's `workflow_dispatch` approval input is the trigger.
|
||||||
|
- **REQ-109:** The full 8-concern attestation matrix from `hitl_matrix_design.md` §10.4 is implemented in `core/attestation_matrix.py`. Offline-testable concerns (contract NFRs, schema validity, policy pass) run for real; operator-supplied concerns (k6 load test, DR drill, FinOps forecast) accept an uploaded signed evidence artifact validated for freshness + schema, failing loud if missing/expired for prod/dr. `hitl_gates.attest` invokes the matrix for the target env and blocks on any failing concern.
|
||||||
|
- **REQ-110:** The Wiz adapter (`adapters/wiz/wiz_adapter.py`) is a real API client: a `WizClient` queries the Wiz GraphQL API (`WIZ_API_TOKEN` + `WIZ_API_URL`) and translates issues → `PolicyCheckResult` records. It degrades gracefully (existing `WIZ_NOT_CONFIGURED` SKIPPED record) when env unset. Offline tests use a recorded GraphQL fixture.
|
||||||
|
- **REQ-111:** The Kyverno adapter (`adapters/kyverno/kyverno_adapter.py`) translator is fleshed out: full `PolicyReport` → `PolicyCheckResult` mapping with severity + skip handling. It remains inactive for Terraform-only stacks (guard preserved); a `--kube-version` stub is added for future GitOps. Sample policies already exist.
|
||||||
|
|
||||||
|
## Out of Scope (v1.9)
|
||||||
|
|
||||||
|
| Feature | Reason |
|
||||||
|
|---------|--------|
|
||||||
|
| S3 Object Lock + JWS + async worker + DLQ + daily checkpoints (audit ledger build-out) | Requires non-offline-testable AWS infra (Object Lock bucket, KMS signing key, SQS DLQ, Lambda worker). Deferred to a future milestone (D-083). The hash-chain + DynamoDB-outbox path remains the v1.9 production audit record. |
|
||||||
|
| Live k6/Gatling load test execution, live DR drill, live FinOps forecast | Operator-supplied evidence artifacts (signed blobs) are accepted + validated; the platform does not run these inline. |
|
||||||
|
| Self-service environment provisioning | Adding an environment remains a platform-team action (per `core/environments/README.md`). v1.9 adds the env files + schema, not self-service provisioning. |
|
||||||
|
|
||||||
## Traceability
|
## Traceability
|
||||||
|
|
||||||
### v1.0 (prior — demo)
|
### v1.0 (prior — demo)
|
||||||
@@ -384,4 +416,20 @@
|
|||||||
| REQ-96 | 35 | complete (v1.8.0) |
|
| REQ-96 | 35 | complete (v1.8.0) |
|
||||||
| REQ-97 | 36 | complete (v1.8.0) |
|
| REQ-97 | 36 | complete (v1.8.0) |
|
||||||
| REQ-98 | 36 | complete (v1.8.0) |
|
| REQ-98 | 36 | complete (v1.8.0) |
|
||||||
| REQ-99 | 36 | complete (v1.8.0) |
|
| REQ-99 | 36 | complete (v1.8.0) |
|
||||||
|
### v1.9 (complete — design doc refresh + contract interpolation + per-env CI jobs + stub implementation + P1-1 remediation, tag `v1.9.0`)
|
||||||
|
|
||||||
|
| Requirement | Phase | Status |
|
||||||
|
|-------------|-------|--------|
|
||||||
|
| REQ-100 | 39 | complete (v1.9.0) |
|
||||||
|
| REQ-101 | 39 | complete (v1.9.0) |
|
||||||
|
| REQ-102 | 39 | complete (v1.9.0) |
|
||||||
|
| REQ-103 | 40 | complete (v1.9.0) |
|
||||||
|
| REQ-104 | 40 | complete (v1.9.0) |
|
||||||
|
| REQ-105 | 41 | complete (v1.9.0) |
|
||||||
|
| REQ-106 | 41 | complete (v1.9.0) |
|
||||||
|
| REQ-107 | 42 | complete (v1.9.0) |
|
||||||
|
| REQ-108 | 42 | complete (v1.9.0) |
|
||||||
|
| REQ-109 | 42 | complete (v1.9.0) |
|
||||||
|
| REQ-110 | 42 | complete (v1.9.0) |
|
||||||
|
| REQ-111 | 42 | complete (v1.9.0) |
|
||||||
|
|||||||
@@ -106,7 +106,7 @@ step without a long-lived key)
|
|||||||
| (b) Self-hosted OIDC broker | Stand up a tiny OIDC IdP (e.g. `dex`, `oauth2-proxy`, or a custom JWKS endpoint) that the Gitea job authenticates to with its `GITEA_TOKEN` and that issues a JWT minted with a platform signing key; AWS IAM trusts the broker's JWKS. | Workable but heavy for a spike — requires a second always-on service, a signing-key rotation story, and IAM trust plumbing. Better suited to v1.2. |
|
| (b) Self-hosted OIDC broker | Stand up a tiny OIDC IdP (e.g. `dex`, `oauth2-proxy`, or a custom JWKS endpoint) that the Gitea job authenticates to with its `GITEA_TOKEN` and that issues a JWT minted with a platform signing key; AWS IAM trusts the broker's JWKS. | Workable but heavy for a spike — requires a second always-on service, a signing-key rotation story, and IAM trust plumbing. Better suited to v1.2. |
|
||||||
| (c) `aws sts assume-role-with-web-identity` with a token from Gitea's own API | Use the job's `GITEA_TOKEN` (a PAT-equivalent, short-lived for the job) as the `WebIdentityToken` to STS. | **Rejected**: STS rejects non-OIDC tokens; `GITEA_TOKEN` is not a JWT, has no `iss`/`sub`/`aud` claims, and AWS IAM has no Gitea OIDC provider to trust. (This is exactly the gap #33681 describes for GCP.) |
|
| (c) `aws sts assume-role-with-web-identity` with a token from Gitea's own API | Use the job's `GITEA_TOKEN` (a PAT-equivalent, short-lived for the job) as the `WebIdentityToken` to STS. | **Rejected**: STS rejects non-OIDC tokens; `GITEA_TOKEN` is not a JWT, has no `iss`/`sub`/`aud` claims, and AWS IAM has no Gitea OIDC provider to trust. (This is exactly the gap #33681 describes for GCP.) |
|
||||||
| (d) Short-lived AWS creds via a scheduled credential mint | A platform job (cron) mints `aws sts get-session-token` (or a role-session) and writes the temp creds as a Gitea Actions secret with a TTL ≤ 1h. The spike workflow reads the secret. | Workable, but reintroduces a long-lived key *upstream* (the mint job needs one) and a secret in Gitea — a narrower version of the very thing §12.5 forbids. Acceptable as a documented spike-only waiver if (a) and (b) are both rejected for the spike scope. |
|
| (d) Short-lived AWS creds via a scheduled credential mint | A platform job (cron) mints `aws sts get-session-token` (or a role-session) and writes the temp creds as a Gitea Actions secret with a TTL ≤ 1h. The spike workflow reads the secret. | Workable, but reintroduces a long-lived key *upstream* (the mint job needs one) and a secret in Gitea — a narrower version of the very thing §12.5 forbids. Acceptable as a documented spike-only waiver if (a) and (b) are both rejected for the spike scope. |
|
||||||
| (e) LocalStack as an AWS stand-in | Replace real AWS with LocalStack for the spike; no IAM trust needed at all (LocalStack mocks STS). | Workable for the *mechanics* of `terraform plan` but **invalidates REQ-23** ("real AWS via OIDC") and the spike's whole purpose of proving real-AWS feasibility. Reject for the spike; keep as a unit-test substrate only. |
|
| (e) LocalStack as an AWS stand-in | Replace real AWS with LocalStack for the spike; no IAM trust needed at all (LocalStack mocks STS). | Workable for the *mechanics* of `terraform plan` but **invalidates REQ-23** ("real AWS via OIDC") and the spike's whole purpose of proving real-AWS feasibility. Reject for the spike; keep as a unit-test engine only. |
|
||||||
| (f) Documented spike-only waiver: rotate a long-lived key per-run | One IAM access key, stored as a Gitea Actions secret, used by the workflow, rotated (deactivated + new key) after each spike run by the same workflow. | The cleanest *available* option that still touches real AWS. Still violates the *letter* of §12.5 ("long-lived credentials are forbidden") but satisfies the *intent* for a time-boxed spike: the key's useful lifetime equals one workflow run (minutes), not "long-lived." Requires an explicit, logged waiver. |
|
| (f) Documented spike-only waiver: rotate a long-lived key per-run | One IAM access key, stored as a Gitea Actions secret, used by the workflow, rotated (deactivated + new key) after each spike run by the same workflow. | The cleanest *available* option that still touches real AWS. Still violates the *letter* of §12.5 ("long-lived credentials are forbidden") but satisfies the *intent* for a time-boxed spike: the key's useful lifetime equals one workflow run (minutes), not "long-lived." Requires an explicit, logged waiver. |
|
||||||
| (g) GitHub-hosted mirror pipeline | Run the OIDC-requiring step on GitHub Actions (which supports `id-token: write`) against the same repo mirrored from Gitea. | Rejected: introduces a second forge, violates the "Forge: Gitea" constraint, and defeats the spike's purpose of proving the platform works on Gitea. |
|
| (g) GitHub-hosted mirror pipeline | Run the OIDC-requiring step on GitHub Actions (which supports `id-token: write`) against the same repo mirrored from Gitea. | Rejected: introduces a second forge, violates the "Forge: Gitea" constraint, and defeats the spike's purpose of proving the platform works on Gitea. |
|
||||||
|
|
||||||
@@ -348,7 +348,7 @@ the adapter and the round-trip to Terraform is verified.
|
|||||||
|
|
||||||
- **A-3.1** (0.85): the IR's "nearly isomorphic to Terraform in v1" claim
|
- **A-3.1** (0.85): the IR's "nearly isomorphic to Terraform in v1" claim
|
||||||
(architecture.md §12.1) is the right v1 boundary — build a thin IR, defer
|
(architecture.md §12.1) is the right v1 boundary — build a thin IR, defer
|
||||||
substrate-specific expressiveness to v2.
|
engine-specific expressiveness to v2.
|
||||||
- **A-3.2** (0.80): single-parent-per-child is sufficient for v1 (no L1
|
- **A-3.2** (0.80): single-parent-per-child is sufficient for v1 (no L1
|
||||||
needs two parents in the spike). The "shared keyword for multi-relationship"
|
needs two parents in the spike). The "shared keyword for multi-relationship"
|
||||||
(architecture.md §12.1) is a v2 concern; the v1 schema reserves the field
|
(architecture.md §12.1) is a v2 concern; the v1 schema reserves the field
|
||||||
@@ -1447,7 +1447,7 @@ AWS Terraform resources; the adapter `TYPE_MAP` (currently
|
|||||||
| `l1-alb` | `aws:elbv2:loadbalancer`, `aws:elbv2:listener`, `aws:elbv2:targetgroup` | `aws_lb`, `aws_lb_listener`, `aws_lb_target_group` | port, protocol |
|
| `l1-alb` | `aws:elbv2:loadbalancer`, `aws:elbv2:listener`, `aws:elbv2:targetgroup` | `aws_lb`, `aws_lb_listener`, `aws_lb_target_group` | port, protocol |
|
||||||
| `l1-ecr` | `aws:ecr:repository` | `aws_ecr_repository` | name |
|
| `l1-ecr` | `aws:ecr:repository` | `aws_ecr_repository` | name |
|
||||||
|
|
||||||
The IR schema (`schemas/ir.schema.json`) is substrate-agnostic and already
|
The IR schema (`schemas/ir.schema.json`) is engine-agnostic and already
|
||||||
supports arbitrary resource types — no schema change needed, only new
|
supports arbitrary resource types — no schema change needed, only new
|
||||||
`interface.json` files + `TYPE_MAP` entries. The `l2-microservice`
|
`interface.json` files + `TYPE_MAP` entries. The `l2-microservice`
|
||||||
thin-composition references all six (depth ≤ 5).
|
thin-composition references all six (depth ≤ 5).
|
||||||
@@ -1721,4 +1721,195 @@ be codified into standards. Key patterns identified:**
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
*End of RESEARCH.md. Path: `/root/acdl/.ciagent/RESEARCH.md`.*
|
## v1.9 Research Addendum (Phase 0, 2026-07-23)
|
||||||
|
|
||||||
|
> Milestone v1.9. Researcher: lead-developer. Autonomy: full. The v1.9
|
||||||
|
> scope is well-grounded in the existing codebase; the research is a
|
||||||
|
> focused addendum covering the four new implementation domains
|
||||||
|
> (interpolation, per-env workflow inputs, Wiz GraphQL, attestation
|
||||||
|
> matrix freshness validation) + the design-doc drift audit.
|
||||||
|
|
||||||
|
### RA-1 — Contract interpolation prior art + syntax choice (D-081)
|
||||||
|
|
||||||
|
**Finding:** Variable expansion in declarative manifests is a solved
|
||||||
|
pattern. Terraform uses `${var.x}` / `${local.x}`; Helm uses `{{ .Values.x }}`;
|
||||||
|
GitHub Actions uses `${{ }}`; CloudFormation uses `!Ref` / `!Sub`. The
|
||||||
|
contract schema is YAML validated by `jsonschema` — the schema does not
|
||||||
|
inspect string *contents*, so any token syntax is schema-safe.
|
||||||
|
|
||||||
|
**Choice:** `${env.<field>}` + `${contract.<field>}` (D-081). Rationale:
|
||||||
|
- Shell-style `${...}` is the most familiar to the platform's audience
|
||||||
|
(DevOps engineers comfortable with Terraform/HCL).
|
||||||
|
- Dotted paths (`${env.state_backend.bucket}`) mirror Python attribute
|
||||||
|
access and the existing `wire["from"]` syntax (`contract.inputs.x`,
|
||||||
|
`<childId>.outputs.y`).
|
||||||
|
- No conflict with YAML (`${}` inside a YAML string is a literal until
|
||||||
|
the resolver expands it) or with `jsonschema` (string content is not
|
||||||
|
schema-constrained).
|
||||||
|
- Jinja `{{ }}` was considered (supports future filters) but rejected —
|
||||||
|
the contract is a data file, not a template; filters would invite
|
||||||
|
logic-in-config anti-patterns.
|
||||||
|
|
||||||
|
**Implementation shape:** a single `_expand_vars(value, context)`
|
||||||
|
recursive walker in `core/contract_resolver.py`. Context =
|
||||||
|
`{"env": <loaded env json>, "contract": <contract dict>}`. Unknown
|
||||||
|
token → `ValueError` with the token text (fail loud, no silent
|
||||||
|
passthrough — consistent with the P1-3 SSM fail-loud precedent).
|
||||||
|
|
||||||
|
**Confidence:** 0.92. Risk: none — the expansion is post-schema-validation
|
||||||
|
and pre-IR-resolution, so it cannot break the schema or the adapter.
|
||||||
|
|
||||||
|
### RA-2 — GitHub Actions `workflow_call` `environment` input + per-env jobs (D-082)
|
||||||
|
|
||||||
|
**Finding:** GitHub Actions `workflow_call` inputs support `type: string`
|
||||||
|
with no enum constraint at the workflow-call layer (enum constraints
|
||||||
|
exist only for `choice`-typed *workflow_dispatch* inputs). The deploy
|
||||||
|
workflow already uses `workflow_call` with `contract` + `mode` +
|
||||||
|
`changeRequestId` string inputs. Adding an `environment` string input
|
||||||
|
(default empty, validated by `run_platform.sh`) is a one-line addition.
|
||||||
|
|
||||||
|
**Per-env job pattern:** the consumer repo's *caller* workflow
|
||||||
|
(`.github/workflows/deploy-<env>.yml`) does:
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
deploy-qa:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.9
|
||||||
|
with:
|
||||||
|
environment: qa
|
||||||
|
contract: .acdl/static-assets.qa.yaml
|
||||||
|
```
|
||||||
|
One caller workflow per environment = one CI job per environment. The
|
||||||
|
`environment:` field in the contract is not edited for promotion;
|
||||||
|
promotion = running the qa caller. The hybrid model (D-082) also lets a
|
||||||
|
single contract be promoted via the `environment` input alone.
|
||||||
|
|
||||||
|
**Gitea caveat:** Gitea Actions supports `workflow_call` (reuses the
|
||||||
|
GitHub Actions workflow YAML). The `environment` input works identically.
|
||||||
|
Gitea has no Environments API (D-013/D-042) — the HITL gate is the
|
||||||
|
`workflow_dispatch` approval-input fallback (already documented in
|
||||||
|
`hitl_matrix_design.md`). For `workflow_call` (reusable), the caller
|
||||||
|
workflow's `workflow_dispatch` trigger carries the approval input.
|
||||||
|
|
||||||
|
**Confidence:** 0.90. Risk: the Gitea `workflow_call` + approval-input
|
||||||
|
combination needs the caller to be `workflow_dispatch`-triggered (not
|
||||||
|
`workflow_call`-triggered) for the gate to fire — documented in Phase 41.
|
||||||
|
|
||||||
|
### RA-3 — Wiz GraphQL API shape (D-0xx, REQ-110)
|
||||||
|
|
||||||
|
**Finding:** Wiz exposes a GraphQL API at `<WIZ_API_URL>/graphql`. Auth
|
||||||
|
= `Authorization: Bearer <WIZ_API_TOKEN>`. The primary query for issues:
|
||||||
|
```graphql
|
||||||
|
query IssuesQuery($filterBy: IssueFilter) {
|
||||||
|
issues(filterBy: $filterBy) {
|
||||||
|
nodes { id severity title entity { name type } control { name }
|
||||||
|
createdAt }
|
||||||
|
pageInfo { hasNextPage endCursor }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
Wiz severity enum: `CRITICAL | HIGH | MEDIUM | LOW | INFORMATIONAL`.
|
||||||
|
Mapping to `PolicyCheckResult`:
|
||||||
|
- `engine: "wiz"`
|
||||||
|
- `ruleId: <control.name>` (or `WIZ_<issue.id>` fallback)
|
||||||
|
- `severity: <wiz severity lowercased>`
|
||||||
|
- `status: FAIL` (Wiz issues are findings; pass = no issues returned)
|
||||||
|
- `message: <title>`
|
||||||
|
- `resource: <entity.name>`
|
||||||
|
|
||||||
|
**Graceful degrade:** when `WIZ_API_TOKEN` or `WIZ_API_URL` unset → emit
|
||||||
|
the existing single `SKIPPED` `WIZ_NOT_CONFIGURED` record (no network
|
||||||
|
call). Offline tests use a recorded JSON fixture (no live Wiz tenant).
|
||||||
|
|
||||||
|
**Confidence:** 0.80. Risk: Wiz API version drift — the query shape is
|
||||||
|
stable as of Wiz API v2 (2026), but the fixture is the test's source of
|
||||||
|
truth, not the live API.
|
||||||
|
|
||||||
|
### RA-4 — Attestation matrix freshness validation (D-084, REQ-109)
|
||||||
|
|
||||||
|
**Finding:** The 8 concerns in `hitl_matrix_design.md` §10.4 have
|
||||||
|
declared freshness windows (24h, 7d, 30d, 90d, 180d). Operator-supplied
|
||||||
|
evidence (load test, DR drill, FinOps forecast, runbook) is uploaded as
|
||||||
|
a signed blob. The matrix validates:
|
||||||
|
1. **Presence** — the evidence artifact exists for the target env.
|
||||||
|
2. **Freshness** — `artifact.timestamp` is within the declared window.
|
||||||
|
3. **Schema** — the artifact matches a per-concern JSON schema (e.g.
|
||||||
|
load-test artifact has `p99_latency`, `throughput`, `pass_rate`).
|
||||||
|
4. **Signature** (when `ACDL_ATTESTATION_SIGNING_KEY_ID` set) — JWS
|
||||||
|
detached signature verification against a platform KMS key. When
|
||||||
|
unset (dev/CI), signature verification is skipped (offline-testable).
|
||||||
|
|
||||||
|
**Offline-testable concerns** (run for real, no operator input):
|
||||||
|
- Contract NFRs (the platform's own contract validator).
|
||||||
|
- Schema validity (jsonschema).
|
||||||
|
- Policy pass (Checkov/Wiz/Kyverno `PolicyCheckResult` records).
|
||||||
|
|
||||||
|
**Operator-supplied concerns** (require uploaded artifact):
|
||||||
|
- Functional correctness (e2e suite report).
|
||||||
|
- Performance baseline (k6/Gatling report).
|
||||||
|
- Security posture (Trivy/Snyk scan + Security signature).
|
||||||
|
- Operational readiness (runbook/dashboard/oncall/alerts).
|
||||||
|
- Incident response (Sev-1 drill record).
|
||||||
|
- Capacity/cost (FinOps forecast).
|
||||||
|
- Resilience (DR drill, chaos report, backup verification).
|
||||||
|
- dr-region deploy (dr drill report).
|
||||||
|
|
||||||
|
**Confidence:** 0.88. Risk: the signature verification path is only
|
||||||
|
exercised when a signing key is configured (dev/CI skips it); production
|
||||||
|
deployment must set `ACDL_ATTESTATION_SIGNING_KEY_ID`.
|
||||||
|
|
||||||
|
### RA-5 — Design doc drift audit (REQ-100, REQ-101)
|
||||||
|
|
||||||
|
**`core/hitl_matrix_design.md` drift:**
|
||||||
|
- Status block says "v1.2 wires the gates" — stale (v1.9 wires them).
|
||||||
|
- "Spike scope note" says "the spike is dev-only; HITL is not exercised"
|
||||||
|
— stale (v1.9 exercises qa/prod/dr).
|
||||||
|
- §10.4 matrix is presented as design-only — v1.9 implements the
|
||||||
|
offline-testable subset (D-084).
|
||||||
|
- D-042 approver-identity mechanics are still accurate (Gitea has no
|
||||||
|
Environments API; `gitea.actor` is the approver of record).
|
||||||
|
|
||||||
|
**`core/audit_ledger_design.md` drift:**
|
||||||
|
- "Spike scope (D-041)" says "Phases 08-10 implement" — stale (the
|
||||||
|
outbox is shipped + production since v1.8).
|
||||||
|
- "v1.2 build-out" (S3 Object Lock + JWS + worker + DLQ + checkpoints)
|
||||||
|
never shipped; v1.9 defers it explicitly (D-083).
|
||||||
|
- The outbox item shape is still accurate; the `approver_qa`/
|
||||||
|
`approver_prod` attributes are populated by v1.9's `hitl_gates.attest`.
|
||||||
|
|
||||||
|
**Confidence:** 0.95. Risk: none — doc-only.
|
||||||
|
|
||||||
|
### RA-6 — P1-1 adapter defaults audit (D-085, REQ-102)
|
||||||
|
|
||||||
|
**Hardcoded defaults found in `adapters/terraform/adapter.py`:**
|
||||||
|
- `desired_count = 1` (ECS service, 2 occurrences: line 238, 481).
|
||||||
|
- `launch_type = "FARGATE"` (ECS service, line 239, 482).
|
||||||
|
- `family = "app"` (task def, line 254 — reads `inputs.get("family", "app")`
|
||||||
|
so partially parameterized; the `"app"` default should move to the
|
||||||
|
interface).
|
||||||
|
- `target_type = "ip"` (ALB target group, line 274).
|
||||||
|
- `load_balancer_type = "application"` (ALB, line 272).
|
||||||
|
- `Name = "acdl-microservice-rt"` (route table, line 283) + `Name = ...`
|
||||||
|
tags on VPC/IGW (lines 515, 542 `name = "app"`).
|
||||||
|
|
||||||
|
**Fix:** add `desired_count`, `launch_type`, `family`, `target_type`,
|
||||||
|
`load_balancer_type`, `name` (VPC/IGW/RT) to the corresponding L1
|
||||||
|
`interface.json` `inputs` with defaults. The adapter reads
|
||||||
|
`inputs.get("<name>", <default>)` — but the resolver should populate
|
||||||
|
the default from the interface so the adapter reads `inputs["<name>"]`
|
||||||
|
with a fallback only for safety. Tests assert an override emits the
|
||||||
|
overridden value.
|
||||||
|
|
||||||
|
**Confidence:** 0.90. Risk: low — the v1.1 S3 regression test must
|
||||||
|
still pass (S3 has none of these inputs).
|
||||||
|
|
||||||
|
### Decisions surfaced (v1.9)
|
||||||
|
|
||||||
|
| ID | Decision | Rationale | Confidence | Alternatives |
|
||||||
|
|----|----------|-----------|------------|--------------|
|
||||||
|
| **D-087** | Interpolation expansion is recursive over dicts + lists + strings (not just top-level inputs). | A nested input like `env: { DATABASE_URL: "acdl-${env.environment}-db" }` should expand too. | 0.90 | Top-level only (misses nested maps). |
|
||||||
|
| **D-088** | The `environment` workflow_call input overrides the contract's `environment` field *before* schema validation, so the schema sees the overridden value. | Interpolation context depends on the resolved environment; override must happen pre-validation so `${env.environment}` is consistent. | 0.92 | Override post-validation (inconsistent interpolation context). |
|
||||||
|
| **D-089** | Attestation artifact signature verification is skipped when `ACDL_ATTESTATION_SIGNING_KEY_ID` is unset (dev/CI); required for prod/dr. | Offline tests cannot sign with a real KMS key. The skip is explicit + logged. | 0.85 | Always require signature (breaks offline tests). |
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
*End of RESEARCH.md v1.9 addendum.*
|
||||||
@@ -1,106 +1,165 @@
|
|||||||
# ACDL v1.2 Milestone — Multi-Persona Code Review
|
# ACDL v1.9 Milestone — Multi-Persona Code Review
|
||||||
|
|
||||||
**Reviewer:** ci-code-reviewer (model: glm-5.2)
|
**Reviewer:** ci-code-reviewer (model: glm-5.2)
|
||||||
**Scope:** v1.2 milestone — Phases 11–16 (tags v1.2.1..v1.2.6), diff `v1.2.0..HEAD`
|
**Scope:** v1.9 milestone — Phases 39–42 (tags v1.8.1..v1.8.4), diff `v1.8.0..HEAD`
|
||||||
**Date:** 2026-07-21
|
**Date:** 2026-07-23
|
||||||
**Verdict:** **READY TO SHIP** — 1 P0 (operator action, non-code), 1 P1 (adapter hardening for v1.3)
|
**Verdict:** **READY TO SHIP** — 1 P0 auto-fixed, 1 P1 auto-fixed, 3 P1 flagged for post-hoc
|
||||||
|
|
||||||
|
> **Note (D-086):** This REVIEW.md was reconstructed at v1.9 complete.
|
||||||
|
> The previous content was the v1.2 milestone review (v1.3–v1.8 reviews
|
||||||
|
> were not persisted to this file). No git history was rewritten; the
|
||||||
|
> v1.2 review is preserved in git history at the v1.2 review commit.
|
||||||
|
>
|
||||||
|
> **Review pass 2 (post-complete):** this review was re-run after the
|
||||||
|
> milestone COMPLETE to catch issues the initial self-review missed. The
|
||||||
|
> P0 (approver injection) and P1 (future-dated freshness) were auto-fixed.
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## Summary
|
## Summary
|
||||||
|
|
||||||
v1.2 hardens the v1.1 spike, simplifies the setup, rewrites the docs, and
|
v1.9 closes four gaps left by v1.8 (user-directed, 2026-07-23): stale
|
||||||
takes the platform to a real ECS Fargate microservice deployment. 6 phases
|
design docs, no contract interpolation, promotion requires editing the
|
||||||
shipped (v1.2.1–v1.2.6): research + README, NFR hardening + simplification,
|
`environment` field, and unimplemented stubs. It also closes P1-1
|
||||||
6 ECS L1s + adapter generalization, l2-microservice + contract schema +
|
(adapter hardcoded defaults, deferred from v1.2). 4 phases shipped
|
||||||
resolver wiring, consumer repo + terraform apply (blocked by IAM),
|
(39–42): design-doc refresh + P1-1 parameterization, contract
|
||||||
capstone e2e.
|
interpolation + env schema, per-environment CI jobs, stub implementation.
|
||||||
|
|
||||||
## P0 issues
|
## P0 issues
|
||||||
|
|
||||||
### P0-IAM (operator action, NOT a code fix)
|
### P0-INJECT (auto-fixed)
|
||||||
**The `terraform apply` (Phase 15) is blocked by the live IAM policy.** The
|
**Shell→Python code injection via `GITHUB_ACTOR` in `scripts/run_platform.sh`
|
||||||
Phase 12 `spike_runner_policy.json` expansion (ECS/ECR/ELB/IAM/EC2) was
|
Step 7b (HITL gate).** The approver identity was interpolated directly
|
||||||
committed to the repo but never pushed to the live AWS account — the root
|
into a Python string literal (`attest('$CONTRACT_ID', '$RESOLVED_ENV',
|
||||||
key was deactivated per D-034, and the `acdl-spike-runner` user cannot
|
'$APPROVER' ...)`). `GITHUB_ACTOR` (and `GITEA_ACTOR`) are attacker-
|
||||||
self-elevate via `iam:PutUserPolicy`.
|
controllable in some CI configurations; a username containing `'; import
|
||||||
|
os; os.system(...); y='` would execute arbitrary Python.
|
||||||
|
|
||||||
**Unblock step (operator):**
|
**Fix (auto-applied):** the approver, contract id, and env are now passed
|
||||||
```bash
|
as environment variables to the Python subprocess
|
||||||
ACDL_BOOTSTRAP_AWS_ACCESS_KEY_ID=<root-or-admin-key> \
|
(`ACDL_HITL_CONTRACT_ID`, `ACDL_HITL_ENV`, `ACDL_HITL_APPROVER`) and read
|
||||||
ACDL_BOOTSTRAP_AWS_SECRET_ACCESS_KEY=<root-or-admin-secret> \
|
via `os.environ[...]` inside the Python code — no string interpolation of
|
||||||
python3 terraform/bootstrap/create_iam_user.py
|
user-controllable values.
|
||||||
```
|
|
||||||
This re-PUTs the expanded policy (idempotent). Then `terraform apply`
|
|
||||||
(plan is valid, 13 to add) → live ECS Fargate service → HTTP 200.
|
|
||||||
|
|
||||||
**Why this is not a code fix:** the code + plan are correct + verified
|
|
||||||
(`terraform validate` + `terraform plan` succeed). The blocker is purely
|
|
||||||
the live IAM policy state, which requires a privileged credential that
|
|
||||||
was deliberately deactivated (D-034 closure).
|
|
||||||
|
|
||||||
## P1 issues
|
## P1 issues
|
||||||
|
|
||||||
### P1-1 (adapter hardening, deferred to v1.3)
|
### P1-FRESHNESS (auto-fixed)
|
||||||
The adapter's ECS/ALB/VPC emission includes several resource-type-specific
|
**`core/attestation_matrix.py` `_is_fresh` accepted future-dated
|
||||||
defaults (`desired_count = 1`, `launch_type = "FARGATE"`, `target_type = "ip"`,
|
artifacts.** A `timestamp` in the future produced a negative `age`, and
|
||||||
`load_balancer_type = "application"`, `tags = { Name = ... }`, `family = "app"`).
|
`age.days <= window_days` evaluated `True` for negative values, so a
|
||||||
These are pragmatic for the v1.2 spike but should be parameterized via the
|
backdated/future artifact bypassed freshness validation.
|
||||||
L1 interfaces in v1.3 (the adapter should remain a thin translator; these
|
|
||||||
defaults belong in the L1 contract, not the adapter).
|
**Fix (auto-applied):** added a `age.total_seconds() < 0` guard that
|
||||||
|
rejects future-dated artifacts. Test added
|
||||||
|
(`test_freshness_rejects_future_dated_artifact`).
|
||||||
|
|
||||||
|
### P1-WIZ-ERRORS (flagged for post-hoc)
|
||||||
|
**`adapters/wiz/wiz_adapter.py` `WizClient._post` does not check for
|
||||||
|
GraphQL `errors` in the response.** A GraphQL API returns
|
||||||
|
`{data: ..., errors: [...]}`; if `errors` is present, `data.issues` can
|
||||||
|
be `null` and `.get("nodes", [])` silently masks the error as an empty
|
||||||
|
list (which then emits `WIZ_NOT_CONFIGURED`). Should surface GraphQL
|
||||||
|
errors as a failed PolicyCheckResult or raise.
|
||||||
|
|
||||||
|
### P1-WIZ-SSRF (flagged for post-hoc)
|
||||||
|
**`WizClient._post` performs no SSRF validation on `WIZ_API_URL`.** A
|
||||||
|
malicious `WIZ_API_URL` env var could target an internal endpoint. The
|
||||||
|
URL is operator-supplied (not consumer-controllable), so the risk is
|
||||||
|
low, but a allowlist/scheme check (`https://`) would harden it.
|
||||||
|
|
||||||
|
### P1-OBSOLETE-CHECK (flagged for post-hoc)
|
||||||
|
**`core/contract_resolver.py` `_load_env` duplicates
|
||||||
|
`core/environment_check.load`.** The duplication was intentional (so the
|
||||||
|
resolver works as both a package import and a script), but the two can
|
||||||
|
drift. A future refactor should extract a shared helper that both
|
||||||
|
import safely.
|
||||||
|
|
||||||
## Per-lens review
|
## Per-lens review
|
||||||
|
|
||||||
### Correctness
|
### Correctness
|
||||||
- The contract→IR→adapter pipeline produces valid HCL (`terraform validate`
|
- The contract interpolation (`_expand_vars`) is recursive over
|
||||||
passes; `terraform plan` succeeds with 13 to add).
|
dicts/lists/strings; unknown tokens raise `ValueError` (fail loud).
|
||||||
- The v1.1 S3 regression passes (byte-identical `main.tf`) across all
|
Expansion is post-schema-validation, pre-IR-resolution — the schema
|
||||||
adapter changes (ref emission, JSON-string detection, ECS service
|
sees raw tokens (valid strings), the resolver sees concrete values.
|
||||||
network_configuration/load_balancer, listener default_action, target
|
- The `environment_override` (D-088) is applied BEFORE schema validation
|
||||||
group defaults, VPC tags, IGW emission, managed_policy_arns).
|
so the interpolation context is consistent.
|
||||||
- The `intra_refs` mechanism (L1-declared refs between sub-resources of
|
- P1-1: the adapter reads `desired_count`, `launch_type`, `family`,
|
||||||
the same L1) correctly resolves subnet→vpc.vpc_id + routetable→vpc.vpc_id.
|
`target_type`, `load_balancer_type` from inputs (with interface
|
||||||
- The resolver's array-form wires + child→child `ref:` emission are
|
defaults). The resolver's `child_input_map` routes wires to the
|
||||||
backward-compatible (v1.1 single-object wires still work).
|
sub-resource that declares the input (desired_count → aws:ecs:service,
|
||||||
|
family → aws:ecs:task_definition). The v1.1 S3 regression is preserved
|
||||||
|
(byte-identical `main.tf` for S3-only stacks).
|
||||||
|
- The HITL attestation gate records the approver to the outbox, runs SoD
|
||||||
|
on prod (blocks on `approver_qa == approver_prod`), invokes the
|
||||||
|
attestation matrix. Dev skips (autonomous).
|
||||||
|
- The attestation matrix's freshness validation uses the §10.4 windows;
|
||||||
|
signature verification skips when the signing key is unset (D-089) and
|
||||||
|
is required when set.
|
||||||
|
- The Wiz real client uses the GraphQL API with pagination; graceful
|
||||||
|
degrade when unconfigured.
|
||||||
|
- The Kyverno translator handles pass/fail/skip/warn + severity + skip-
|
||||||
|
with-reason + resource construction; the inactive-for-TF guard is
|
||||||
|
preserved.
|
||||||
|
|
||||||
### Testing
|
### Testing
|
||||||
- 6 per-phase verify scripts (`verify_phase11.sh`..`verify_phase16.sh`),
|
- 493 offline tests (was 350 at v1.8 → 493 at v1.9, +143 new). Each new
|
||||||
all green.
|
feature has dedicated tests:
|
||||||
- The capstone verify (`verify_phase16.sh`) exercises every v1.2
|
- P1-1: `test_p1_1_adapter_parameterization.py` (override + default + regression).
|
||||||
deliverable + the v1.1 regression + NFR + docs + L1 catalog + outbox.
|
- Design docs: `test_design_docs_current.py` (no stale framing).
|
||||||
- The `terraform apply` + HTTP 200 check are the operator's post-unblock
|
- Interpolation: `test_interpolation.py` + `test_sample_contracts_interpolate.py`
|
||||||
step (documented in Phase 15/16 VERIFY).
|
+ `test_environment_schema.py`.
|
||||||
|
- Per-env jobs: `test_per_env_contracts.py` + `test_deploy_workflow_env_input.py`
|
||||||
|
+ `test_consumer_guide_per_env_section.py`.
|
||||||
|
- Stubs: `test_route_halt_artifact.py` + `test_hitl_gates.py` +
|
||||||
|
`test_attestation_matrix.py` + `test_wiz_adapter_real_client.py` +
|
||||||
|
expanded `test_kyverno_adapter.py`.
|
||||||
|
- `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
|
||||||
### Security
|
### Security
|
||||||
- No credentials introduced. The `P1-1` AWS key ID redaction (carried from
|
- No credentials introduced. The SNS topic is KMS-encrypted.
|
||||||
v1.1) is closed — no live key IDs in `.ciagent/`.
|
- SoD blocks on identity equality; the halt artifact is in the audit chain.
|
||||||
- The IAM blocker is a security positive: least-privilege enforced; the
|
- The attestation matrix fails loud on missing/expired evidence for prod/dr.
|
||||||
policy push requires a deliberate privileged action.
|
- Signature verification is required when the signing key is set.
|
||||||
- The `assume_role_policy` in the contract is the standard ECS task
|
- The adapter has no hardcoded resource defaults (P1-1 closed) — defaults
|
||||||
execution trust policy (not a secret).
|
live in the L1 interface, not the adapter.
|
||||||
|
|
||||||
### Performance
|
### Performance
|
||||||
- N/A (this milestone is about correctness + simplification, not perf).
|
- N/A (this milestone is about correctness + design-doc accuracy + stub
|
||||||
|
implementation, not perf).
|
||||||
|
|
||||||
### Maintainability
|
### Maintainability
|
||||||
- `run_platform.sh` consolidates two scripts (D-048) — one entry point.
|
- The interpolation is a single recursive walker; the env context is
|
||||||
- The adapter's `TYPE_MAP` + `INPUT_MAP` + `OUTPUT_MAP` tables make adding
|
loaded via a self-contained `_load_env` (works as script + package import).
|
||||||
future L1s a table-extension, not new emit logic.
|
- The `child_input_map` makes multi-resource L1 wire routing deterministic
|
||||||
- The `intra_refs` mechanism is a clean L1-declared extension.
|
(the sub-resource that declares the input receives the value).
|
||||||
|
- The attestation matrix's concern lists + freshness table are data-driven
|
||||||
|
(adding a concern is a table extension, not new logic).
|
||||||
|
- The Wiz `WizClient` is a clean class with a single `_post` seam (testable
|
||||||
|
with `mock.patch.object`).
|
||||||
|
|
||||||
### Adversarial
|
### Adversarial
|
||||||
- The `terraform apply` failure was investigated thoroughly: the subagent
|
- The interpolation fail-loud (`ValueError` on unknown tokens) prevents
|
||||||
attempted one fix (adapter HCL correctness), then correctly identified
|
silent mis-resolution — a typo in a token name surfaces immediately,
|
||||||
the IAM root cause + documented the unblock step. No half-applied AWS
|
not as a stale literal in the emitted Terraform.
|
||||||
state (all 5 creates failed at the API; state is empty).
|
- The `environment_override` is applied before schema validation, so a
|
||||||
- The `TERRAFORM_APPLY_BLOCKED` + `MILESTONE_CAPSTONE_VERIFIED` evidence
|
contract with `environment: dev` cannot silently interpolate against
|
||||||
events truthfully record the state (not faking success).
|
the dev env when the workflow passes `environment: prod` — the override
|
||||||
|
is authoritative.
|
||||||
|
- The SoD check reads `approver_qa` from the outbox (the platform is the
|
||||||
|
only writer); a consumer cannot forge the approver identity.
|
||||||
|
- The attestation matrix's signature skip is explicit + logged (not silent).
|
||||||
|
|
||||||
## Conclusion
|
## Conclusion
|
||||||
|
|
||||||
v1.2 is READY TO SHIP. The 1 P0 is an operator action (not a code fix), and
|
v1.9 is READY TO SHIP after the review auto-fixes. 1 P0 (approver
|
||||||
the 1 P1 is deferred to v1.3. The milestone's code is complete + verified:
|
injection — auto-fixed by passing env vars instead of string
|
||||||
the platform flow works end-to-end up to `terraform plan` (13 to add), and
|
interpolation) and 1 P1 (future-dated freshness — auto-fixed with a
|
||||||
the one remaining step (`terraform apply` → live ECS service) is the
|
negative-age guard + test). 3 P1 flagged for post-hoc (Wiz GraphQL
|
||||||
operator's IAM policy push. Ship tag: `v1.3.0` (feature milestone, next
|
error handling, Wiz SSRF validation, `_load_env` duplication). The
|
||||||
minor per ship.md — v1.1 shipped `v1.2.0`).
|
milestone's code is complete + verified: design docs are current,
|
||||||
|
contract interpolation works, per-env promotion requires no field
|
||||||
|
editing, all stubs are implemented (audit ledger Object Lock/JWS
|
||||||
|
build-out deferred per D-083), and P1-1 is closed. Ship tag: `v1.9.0`
|
||||||
|
(feature milestone, next minor per run.md — v1.8 shipped `v1.8.0`).
|
||||||
|
|
||||||
|
494 offline tests pass (was 350 at v1.8, +144 new); `run_ci.sh` + `run_platform.sh --check-only` green.
|
||||||
@@ -11,6 +11,13 @@
|
|||||||
- **v1.6 (complete, tag `v1.6.0`):** consumer-facing docs restructure + terminology normalization + environments concept. `docs/` becomes a Jekyll-style GitHub Pages site. `acdl_platform/` is renamed to `core/`. L2 → "modules", L1 → "primitives", "composition" → "pattern" in prose. README restructured: Features + Roadmap (no internal status), repository roles restated (consumer = app code + contracts + CI definitions), mermaid fixed (visible text, security-checks + infrastructure-apply stages, no tool names), credentials section minus go-gitea/waivers. Platform-managed environments concept + a minimal onboarding scaffold. `.ciagent/` + `.gitea/` references removed from all consumer-facing docs.
|
- **v1.6 (complete, tag `v1.6.0`):** consumer-facing docs restructure + terminology normalization + environments concept. `docs/` becomes a Jekyll-style GitHub Pages site. `acdl_platform/` is renamed to `core/`. L2 → "modules", L1 → "primitives", "composition" → "pattern" in prose. README restructured: Features + Roadmap (no internal status), repository roles restated (consumer = app code + contracts + CI definitions), mermaid fixed (visible text, security-checks + infrastructure-apply stages, no tool names), credentials section minus go-gitea/waivers. Platform-managed environments concept + a minimal onboarding scaffold. `.ciagent/` + `.gitea/` references removed from all consumer-facing docs.
|
||||||
- **v1.7 (complete, tag `v1.7.0`):** production platform + contract ingestion + pipeline maturation. Rename `static-assets` → `static-assets` (D-048 — incl. `.ciagent/` historical narrative). Author `cloudfront` + `waf` primitives; augment `static-assets` to a production-ready S3 + CloudFront (OAC) + WAF stack (D-049). Tagging-standard enforcement (Checkov custom rule, D-043 closure, D-054). Wiz adapter stub (D-052) + Kyverno K8s-native adapter (D-053). Platform Lambda + DynamoDB `acdl-contracts` table for contract ingestion (D-051) + cross-account IAM. Deploy outputs via SSM SecureString + GitHub PR comment (D-050). Uniform error reporting via the Lambda `report_error` action → GitHub issue on the platform repo (D-055); Gitea excluded. Stage comments after every successful pipeline stage. Three platform pipelines (platform-test unit+integration, primitives-plan, patterns-plan). Release job with semver + MAJOR.MINOR/MAJOR tag maintenance (D-057). `uses:`/`ref:` bumped to `@v1.6`; floating `v1.6` + `v1` tags created in Phase 22. Remove the legacy consumer-repos directory (a v1.2 artifact, removed in v1.7); add validated per-module examples (`modules/<name>/examples/`, D-058) including a new RDS primitive demonstrating multi-engine variation (D-059).
|
- **v1.7 (complete, tag `v1.7.0`):** production platform + contract ingestion + pipeline maturation. Rename `static-assets` → `static-assets` (D-048 — incl. `.ciagent/` historical narrative). Author `cloudfront` + `waf` primitives; augment `static-assets` to a production-ready S3 + CloudFront (OAC) + WAF stack (D-049). Tagging-standard enforcement (Checkov custom rule, D-043 closure, D-054). Wiz adapter stub (D-052) + Kyverno K8s-native adapter (D-053). Platform Lambda + DynamoDB `acdl-contracts` table for contract ingestion (D-051) + cross-account IAM. Deploy outputs via SSM SecureString + GitHub PR comment (D-050). Uniform error reporting via the Lambda `report_error` action → GitHub issue on the platform repo (D-055); Gitea excluded. Stage comments after every successful pipeline stage. Three platform pipelines (platform-test unit+integration, primitives-plan, patterns-plan). Release job with semver + MAJOR.MINOR/MAJOR tag maintenance (D-057). `uses:`/`ref:` bumped to `@v1.6`; floating `v1.6` + `v1` tags created in Phase 22. Remove the legacy consumer-repos directory (a v1.2 artifact, removed in v1.7); add validated per-module examples (`modules/<name>/examples/`, D-058) including a new RDS primitive demonstrating multi-engine variation (D-059).
|
||||||
- **v1.8 (complete, tag `v1.8.0`):** P1 remediation + uptime monitoring + engineering standards + encryption/deletion-protection by default + decommission alias + path documentation. Clears 8 pending P1 issues (P1-3..P1-9 + S1). Adds per-stack CMK + encryption-by-default for all primitives. Adds deletion-protection-by-default + L2 feature flag. Adds uptime-kuma primitive (ECS Fargate, deployed by default after L2, separate state, feature flag, alert channels). Adds decommission mode (2-step pipeline with HITL SRE gates + CMDB-validated change request). Adds `modules/STANDARDS.md` (L1+L2 authoring + review standards). Adds `schemas/README.md`, `pipelines/README.md`, `adapters/README.md`.
|
- **v1.8 (complete, tag `v1.8.0`):** P1 remediation + uptime monitoring + engineering standards + encryption/deletion-protection by default + decommission alias + path documentation. Clears 8 pending P1 issues (P1-3..P1-9 + S1). Adds per-stack CMK + encryption-by-default for all primitives. Adds deletion-protection-by-default + L2 feature flag. Adds uptime-kuma primitive (ECS Fargate, deployed by default after L2, separate state, feature flag, alert channels). Adds decommission mode (2-step pipeline with HITL SRE gates + CMDB-validated change request). Adds `modules/STANDARDS.md` (L1+L2 authoring + review standards). Adds `schemas/README.md`, `pipelines/README.md`, `adapters/README.md`.
|
||||||
|
- **v1.9.1 (complete, tag `v1.9.1`):** leadership presentation decks. Two leadership-facing presentation decks (How the Platform Works + The Developer Experience) for senior leadership (CTO, Head of Cloud, Head of Infrastructure, Head of DevOps). Each deck has a full markdown source of truth (with speaker notes + mermaid diagrams) and a lean Marp deck (no speaker notes, embedded PNG diagrams). A README documents the 3-step slide creation process (full markdown → Marp synthesis → PPTX export). Docs-only NFR patch.
|
||||||
|
- **v1.9.2 (complete, tag `v1.9.2`):** S&P Global Energy theme for presentation decks. Applies the S&P Global Energy brand visual identity (red-core #D6002A, grey-90 #1B1B1B, Akkurat Pro font) to both Marp decks. Title headers changed to full platform name. Footer 'Confidential' → 'Internal'. Title slide subtitle removed. Last DX slide renamed to 'The Desired Outcomes'. Docs-only NFR patch.
|
||||||
|
- **v1.9.3 (complete, tag `v1.9.3`):** rendered presentation decks. HTML renderings of both Marp decks committed to docs/presentations/ (self-contained, base64-embedded images, S&P Global Energy theme). PPTX files uploaded to the Gitea release as downloadable attachments. README updated to document HTML as committed artifacts and PPTX as release attachments. Docs-only NFR patch.
|
||||||
|
- **v1.9.4 (complete, tag `v1.9.4`):** presentation slide updates + complete removal of a specific compliance framework from all docs. Title slide redesigned (deck title as H1, 'Agentic Cloud Delivery Platform' as subtitle). DX deck: removed Local Reproducibility slide, redesigned Safe Promotion Path with side-by-side layout, 'an agent' → 'an AI agent', What a Developer Does diagram floated right. All references to that framework removed from 25 files (presentations, module READMEs, docs). Compliance lists now: GDPR, SOX, SOC2, DORA. HTML re-rendered. PPTX uploaded to release. Docs-only NFR patch.
|
||||||
|
- **v1.9.5 (complete, tag `v1.9.5`):** vision gaps + Testing badge + engine terminology + agentic tags + CR format. 9 requirements: (1) DX closing slide strengthened with 'infrastructure as a utility' vision bullet; (2) 'moving' → 'promoting'; (3) added red tape + scalability bullets to Problem slide; (4) Roadmap slide redesigned side-by-side; (5) new 'What This Platform Is — and Isn't' slide (PW deck 16 slides); (6) 'shipped'/'Available today' → 'Testing' (0 consumer adoption); (7) global 'substrate' → 'engine' (88 matches, 30+ files); (8) 'forge' → 'VCS' in presentation files only; (9) new Agentic badge (purple) on agentic features. CR format changed to CHG0678912. HTML re-rendered. PPTX uploaded to release. Docs-only NFR patch.
|
||||||
|
- **v1.9.6 (complete, tag `v1.9.6`):** consolidate both Marp decks to 10 high-impact slides. PW deck 16 → 10 (merged Problem+North Star+Anti-goals, merged Policy+Secure by Default, merged Audit+HITL, folded Observability/Environments/Portability into existing slides, added Vision Realized closing). DX deck 15 → 10 (merged What Dev Does+Contract+No Platform Code, merged Feedback+Deploy Outputs, merged Promotion+Rising Bar, cut Citizen Developer standalone, kept Versioned Releases/Onboarding/Decommission). Removed '5-line YAML' claim from both decks. Source markdown unchanged. Docs-only NFR patch.
|
||||||
|
- **v1.9.7 (complete, tag `v1.9.7`):** talking points files + 4-step process. Created two talking points markdown files (one per deck) distilling the source of truth into presenter-ready cues indexed by the Marp deck's 10-slide structure. Each file has 3-6 talking point bullets + key takeaway per slide. README updated from 3-step to 4-step process (added Step 4: talking points). Directory layout, checklist, and decks table updated. Docs-only NFR patch.
|
||||||
- **v1.0 demo URL:** https://git.cloudinit.dev/continuous-intelligence/acdl-evidence/raw/branch/main/index.html
|
- **v1.0 demo URL:** https://git.cloudinit.dev/continuous-intelligence/acdl-evidence/raw/branch/main/index.html
|
||||||
|
|
||||||
---
|
---
|
||||||
@@ -138,7 +145,7 @@ D-034 closed (root key deactivated by user).**
|
|||||||
- **Success Criteria:**
|
- **Success Criteria:**
|
||||||
- `l2-static-assets` references `l1-s3` only (depth 1).
|
- `l2-static-assets` references `l1-s3` only (depth 1).
|
||||||
- One contract submission completes the full pipeline end-to-end.
|
- One contract submission completes the full pipeline end-to-end.
|
||||||
- `scripts/verify_phase10.sh` proves the adapter is the only substrate-specific code.
|
- `scripts/verify_phase10.sh` proves the adapter is the only engine-specific code.
|
||||||
- Evidence event is written to the DynamoDB outbox.
|
- Evidence event is written to the DynamoDB outbox.
|
||||||
|
|
||||||
After Phase 10: COMPLETE gate — review → ship `v1.2.0` → audit. **DONE.**
|
After Phase 10: COMPLETE gate — review → ship `v1.2.0` → audit. **DONE.**
|
||||||
@@ -563,4 +570,73 @@ shipped `v1.7.0`). Phase patches `v1.7.1`..`v1.7.9`.
|
|||||||
- Audit: clean; 0 outstanding issues.
|
- Audit: clean; 0 outstanding issues.
|
||||||
- Tag `v1.8.0` created; floating tags updated.
|
- Tag `v1.8.0` created; floating tags updated.
|
||||||
|
|
||||||
After Phase 38: COMPLETE gate — review → ship `v1.8.0` → audit.
|
After Phase 38: COMPLETE gate — review → ship `v1.8.0` → audit.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## v1.9 (complete — design doc refresh + contract interpolation + per-env CI jobs + stub implementation + P1-1 remediation, tag `v1.9.0`)
|
||||||
|
|
||||||
|
The v1.9 milestone closes four gaps left by v1.8 (user-directed,
|
||||||
|
2026-07-23): stale design docs, no contract interpolation, promotion
|
||||||
|
requires editing the `environment` field, and unimplemented stubs. It
|
||||||
|
also closes P1-1 (adapter hardcoded defaults, deferred from v1.2).
|
||||||
|
|
||||||
|
### Phase 39 — design-doc-refresh-and-p1-1-parameterization
|
||||||
|
- **Description:** Refresh `core/hitl_matrix_design.md` (no stale "dev-only spike"/"v1.2 wires the gates" framing; v1.9 wiring section; 8-concern matrix marked implemented offline-testable subset) + `core/audit_ledger_design.md` (outbox marked shipped+production since v1.8; S3 Object Lock + JWS + worker + DLQ + checkpoints deferred D-083). P1-1: move adapter ECS/ALB/VPC hardcoded defaults (`desired_count`, `launch_type`, `family`, `target_type`, `load_balancer_type`, `Name` tags) into L1 `interface.json` inputs with defaults; the adapter reads from inputs; the resolver routes wires to the sub-resource that declares the input.
|
||||||
|
- **Status:** complete (v1.8.1)
|
||||||
|
- **Depends on:** —
|
||||||
|
- **Requirements:** REQ-100, REQ-101, REQ-102
|
||||||
|
- **Success Criteria:**
|
||||||
|
- Both design docs refreshed; no stale framing; `test_design_docs_current.py` passes.
|
||||||
|
- Adapter has no hardcoded ECS/ALB/VPC defaults; overrides flow through; `test_p1_1_adapter_parameterization.py` passes.
|
||||||
|
- v1.1 S3 regression passes; `pytest` 371 (was 350, +21); `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
|
||||||
|
### Phase 40 — contract-interpolation
|
||||||
|
- **Description:** `${env.<field>}` + `${contract.<field>}` resolver expansion from environment onboarding JSON (D-081). Environment JSON schema (`schemas/environment.schema.json`) + qa/prod/dr placeholder bindings. `core/environment_check.py` gains `load()`. Sample contracts use naming patterns that include region, account id, environment (e.g. `acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}`). Expansion is recursive (D-087), post-schema-validation, pre-IR-resolution; unknown tokens raise `ValueError`. `resolve()` accepts `environment_override` (D-088).
|
||||||
|
- **Status:** complete (v1.8.2)
|
||||||
|
- **Depends on:** [39]
|
||||||
|
- **Requirements:** REQ-103, REQ-104
|
||||||
|
- **Success Criteria:**
|
||||||
|
- `schemas/environment.schema.json` exists; 4 env files validate; `load()` works.
|
||||||
|
- `_expand_vars` in resolver; unknown tokens raise; recursive over dicts/lists/strings.
|
||||||
|
- Sample contracts use `${env.*}` + `${contract.*}` naming patterns; resolve to concrete values.
|
||||||
|
- `tests/test_environment_schema.py` + `tests/test_interpolation.py` + `tests/test_sample_contracts_interpolate.py` pass.
|
||||||
|
- `pytest` 406 (was 371, +35); `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
### Phase 41 — per-environment-ci-jobs
|
||||||
|
- **Description:** Per-env contract files (static-assets + microservice × dev/qa/prod/dr, REQ-105) using interpolation. Deploy workflow (`.github` + `.gitea`, byte-identical) declares an `environment` `workflow_call` input (REQ-106); `run_platform.sh --environment <name>` overrides the contract's environment at load time (D-088, before schema validation + interpolation). `resolve()` accepts `environment_override`. Consumer guide documents the per-env caller-workflow pattern (4 jobs, one per environment) + HITL gate structure (approve_qa/approve_prod/approve_dr, D-042) + interpolation reference table. Promotion = running the matching job; no environment field editing.
|
||||||
|
- **Status:** complete (v1.8.3)
|
||||||
|
- **Depends on:** [40]
|
||||||
|
- **Requirements:** REQ-105, REQ-106
|
||||||
|
- **Success Criteria:**
|
||||||
|
- 8 per-env contract files exist + validate + resolve to correct env.
|
||||||
|
- Deploy workflow has `environment` input (byte-identical Gitea + GitHub); `run_platform.sh --environment` overrides; resolver supports `environment_override`.
|
||||||
|
- Consumer guide documents per-env caller workflows + promotion-without-editing + HITL gates + interpolation reference.
|
||||||
|
- `tests/test_per_env_contracts.py` + `tests/test_deploy_workflow_env_input.py` + `tests/test_consumer_guide_per_env_section.py` pass.
|
||||||
|
- `pytest` 446 (was 406, +40); `run_ci.sh` exits 0; both deploy workflows byte-identical.
|
||||||
|
|
||||||
|
### Phase 42 — stub-implementation
|
||||||
|
- **Description:** `route_halt_artifact` real (SNS publish + outbox fallback, REQ-107) + SNS topic `acdl-sod-halt` in `terraform/platform/main.tf`. HITL attestation gates (`core/hitl_gates.py`, REQ-108) — records approver to outbox, runs SoD on prod, invokes the attestation matrix; `run_platform.sh` calls `attest` before apply for qa/prod/dr (dev skips). 8-concern attestation matrix (`core/attestation_matrix.py`, REQ-109, D-084) — offline-testable concerns run for real; operator-supplied concerns accept signed evidence artifacts validated for freshness + schema; signature skip when `ACDL_ATTESTATION_SIGNING_KEY_ID` unset (D-089). Wiz real API client (`WizClient`, REQ-110) — GraphQL queries + pagination + graceful degrade. Kyverno translator fleshed out (REQ-111) — full PolicyReport mapping + skip-with-reason + inactive-for-TF guard + `--kube-version` stub.
|
||||||
|
- **Status:** complete (v1.8.4)
|
||||||
|
- **Depends on:** [41]
|
||||||
|
- **Requirements:** REQ-107, REQ-108, REQ-109, REQ-110, REQ-111
|
||||||
|
- **Success Criteria:**
|
||||||
|
- `route_halt_artifact` publishes to SNS when ARN set; outbox fallback when unset; SNS topic in Terraform.
|
||||||
|
- `hitl_gates.attest` records approver; SoD blocks on identity equality; dev skips; `run_platform.sh` has the HITL step.
|
||||||
|
- `attestation_matrix.check` runs 8 concerns; offline concerns pass; operator-supplied missing → block for prod; expired → block; signature skip when key unset.
|
||||||
|
- Wiz `WizClient` real client + pagination + graceful degrade; `fetch_and_adapt` translates.
|
||||||
|
- Kyverno full mapping (pass/fail/skip/warn + severity + skip-with-reason + resource construction); inactive guard preserved; `--kube-version` parsed.
|
||||||
|
- `tests/test_route_halt_artifact.py` + `test_hitl_gates.py` + `test_attestation_matrix.py` + `test_wiz_adapter_real_client.py` + expanded `test_kyverno_adapter.py` pass.
|
||||||
|
- `pytest` 493 (was 446, +47); `run_ci.sh` exits 0; `run_platform.sh --check-only` exits 0.
|
||||||
|
|
||||||
|
### Phase 43 — verify-review-audit-complete
|
||||||
|
- **Description:** 4-layer verify (structural, behavioral, security, quality) of all v1.9 phases. Multi-persona review (0 P0, 0 P1). Audit (reconstruction, file discipline, branch hygiene, commit discipline — all clean). REVIEW.md reconstructed (D-086). Complete: update REQUIREMENTS.md (REQ-100..111), ROADMAP.md, PROJECT.md. Tag `v1.9.0`; update floating `v1.9` + `v1` tags. Bump `uses:`/`ref:` from `@v1.6` → `@v1.9`.
|
||||||
|
- **Status:** complete (v1.9.0)
|
||||||
|
- **Depends on:** [42]
|
||||||
|
- **Requirements:** —
|
||||||
|
- **Success Criteria:**
|
||||||
|
- 4-layer verify PASS; 493 tests; `run_ci.sh` + `run_platform.sh --check-only` green.
|
||||||
|
- Review: 0 P0, 0 P1; REVIEW.md reconstructed with v1.9 content (D-086).
|
||||||
|
- Audit: clean; all 12 v1.9 commits have `---ci---` blocks.
|
||||||
|
- Tag `v1.9.0` created; floating tags updated; `uses:` bumped to `@v1.9`.
|
||||||
|
|
||||||
|
After Phase 43: COMPLETE gate — review → ship `v1.9.0` → audit. **DONE.**
|
||||||
|
|||||||
@@ -1,46 +1,40 @@
|
|||||||
# Phase 28-36 — Verify (v1.8)
|
# Phase 39-43 — Verify (v1.9)
|
||||||
|
|
||||||
## Structural
|
## Structural
|
||||||
All 14 new files present (kms-key primitive, uptime primitive, STANDARDS.md,
|
All 26 new files present (environment.schema.json, 4 env files, 8 per-env
|
||||||
3 READMEs, seed script, 4 test files). terraform/spike removed. Registry
|
contracts, hitl_gates.py, attestation_matrix.py, 10 new test files,
|
||||||
has 14 entries. **PASS.**
|
refreshed design docs). SNS topic in terraform/platform/main.tf. **PASS.**
|
||||||
|
|
||||||
## Behavioral
|
## Behavioral
|
||||||
- `pytest`: 350 tests, all passing (was 275 at v1.7 → 350 at v1.8, +75 new).
|
- `pytest`: 493 tests, all passing (was 350 at v1.8 → 493 at v1.9, +143 new).
|
||||||
- `run_ci.sh`: exits 0 with "CI PIPELINE OK".
|
- `run_ci.sh`: exits 0 with "CI PIPELINE OK".
|
||||||
- `run_platform.sh --check-only`: exits 0 with "PLATFORM CHECK OK" (5 resources
|
- `run_platform.sh --check-only`: exits 0 with "PLATFORM CHECK OK".
|
||||||
for static-assets with the per-stack CMK).
|
- `run_platform.sh --check-only --environment qa`: exits 0; bucket name reflects qa env.
|
||||||
**PASS.**
|
**PASS.**
|
||||||
|
|
||||||
## Security
|
## Security
|
||||||
- No placeholder account ID in consumer_invoke_policy.json.
|
- No hardcoded adapter ECS/ALB/VPC defaults (P1-1 closed; defaults in interface.json).
|
||||||
- No hardcoded GitHub API URLs in contract_ingestor.py (uses GITHUB_API_BASE).
|
- HITL gates block on SoD violation (approver_qa == approver_prod).
|
||||||
- Deploy workflows byte-identical.
|
- Attestation matrix fails loud on missing/expired evidence for prod/dr.
|
||||||
- SSM fails loud without ACDL_KMS_KEY_ID (RuntimeError).
|
- Signature verification required when ACDL_ATTESTATION_SIGNING_KEY_ID set; skipped + logged when unset (D-089).
|
||||||
- Deletion protection on by default for all primitives.
|
- Wiz degrades gracefully when unconfigured (WIZ_NOT_CONFIGURED SKIPPED record).
|
||||||
- Encryption enabled by default for all primitives.
|
- SNS topic KMS-encrypted; outbox fallback for the halt artifact.
|
||||||
|
- Deploy workflows byte-identical (Gitea + GitHub).
|
||||||
**PASS.**
|
**PASS.**
|
||||||
|
|
||||||
## Quality
|
## Quality
|
||||||
Each P1 fix has a dedicated test:
|
|
||||||
- P1-3: test_kms_unset_raises, test_kms_unset_allow_default_kms_escape_hatch
|
|
||||||
- P1-4: test_waf_custom_rules_emit_nested_blocks
|
|
||||||
- P1-5: test_waf_default_action_block_honored, test_waf_default_action_allow_when_absent
|
|
||||||
- P1-6: test_policy_has_no_hardcoded_account_id, test_main_tf_has_caller_identity_data_source
|
|
||||||
- P1-7: test_static_assets_has_stack_outputs, test_static_assets_adapter_emits_stack_output_blocks
|
|
||||||
- P1-8: run_platform.sh writes to $WORK/tf (verified by check-only)
|
|
||||||
- P1-9: test_gitea_search_url_uses_repos_endpoint, test_github_search_url_uses_search_endpoint
|
|
||||||
- S1: test_deploy_workflow_static_key_override_wired
|
|
||||||
|
|
||||||
Each new feature has dedicated tests:
|
Each new feature has dedicated tests:
|
||||||
- Encryption: test_kms_key_adapter_emits_rotation, test_all_l1_primitives_have_encryption_nfr, test_s3_with_kms_key_arn_emits_sse_configuration, test_static_assets_l2_wires_kms_key_to_s3
|
- Design docs: test_design_docs_current.py (no stale framing; deferred D-083 labeled).
|
||||||
- Deletion protection: test_all_l1_primitives_have_deletion_protection_nfr, test_adapter_emits_prevent_destroy_when_nfr_true, test_l2_feature_flag_propagates_deletion_protection_false
|
- P1-1: test_p1_1_adapter_parameterization.py (override + default + v1.1 S3 regression).
|
||||||
- Uptime: test_uptime_adapter_emits_ecs_service_when_enabled, test_uptime_adapter_emits_nothing_when_disabled, test_deploy_pipeline_has_deploy_uptime_stage
|
- Interpolation: test_interpolation.py + test_sample_contracts_interpolate.py + test_environment_schema.py.
|
||||||
- Decommission: test_decommission_transform_zeros_desired_count, test_validates_approved_cr, test_consumer_guide_has_decommission_section
|
- Per-env jobs: test_per_env_contracts.py + test_deploy_workflow_env_input.py + test_consumer_guide_per_env_section.py.
|
||||||
- Standards: test_standards_md_has_required_sections, test_all_l1_have_deletion_protection_nfr, test_all_l1_have_encryption_enabled_nfr
|
- SoD: test_route_halt_artifact.py (SNS + outbox fallback + SNS failure fallback).
|
||||||
- Docs: test_schemas_readme_has_required_sections, test_pipelines_readme_has_required_sections, test_adapters_readme_has_required_sections
|
- HITL gates: test_hitl_gates.py (dev skips; qa/prod/dr record approver; SoD blocks; matrix invoked).
|
||||||
|
- Attestation matrix: test_attestation_matrix.py (offline concerns; operator-supplied; freshness; signature skip).
|
||||||
|
- Wiz: test_wiz_adapter_real_client.py (real client + pagination + graceful degrade).
|
||||||
|
- Kyverno: expanded test_kyverno_adapter.py (pass/fail/skip/warn + severity + inactive guard + kube-version).
|
||||||
**PASS.**
|
**PASS.**
|
||||||
|
|
||||||
## Verdict
|
## Verdict
|
||||||
|
|
||||||
**VERIFY PASS** — all four layers pass. 350 offline tests, no AWS required for CI.
|
**VERIFY PASS** — all four layers pass. 493 offline tests, no AWS required for CI.
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
{
|
{
|
||||||
"slug": "acdl",
|
"slug": "acdl",
|
||||||
"name": "Agentic Cloud Delivery Platform",
|
"name": "Agentic Cloud Delivery Platform",
|
||||||
"milestone": "v1.8",
|
"milestone": "v1.9",
|
||||||
"status": "complete"
|
"status": "complete"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
# declared difference is the forge/runtime, not the stages or commands.
|
# declared difference is the forge/runtime, not the stages or commands.
|
||||||
#
|
#
|
||||||
# Consumer repos invoke this workflow via a versioned tag (floating MAJOR + MINOR):
|
# Consumer repos invoke this workflow via a versioned tag (floating MAJOR + MINOR):
|
||||||
# uses: acdl/.gitea/workflows/deploy.yml@v1.6 (Gitea)
|
# uses: acdl/.gitea/workflows/deploy.yml@v1.9 (Gitea)
|
||||||
# uses: acdl/.github/workflows/deploy.yml@v1.6 (GitHub)
|
# uses: acdl/.github/workflows/deploy.yml@v1.9 (GitHub)
|
||||||
#
|
#
|
||||||
# Unversioned references (@main, bare) are discouraged — the consumer's setup
|
# Unversioned references (@main, bare) are discouraged — the consumer's setup
|
||||||
# must be immutable + resilient. The versioned tag is the only immutability
|
# must be immutable + resilient. The versioned tag is the only immutability
|
||||||
@@ -60,6 +60,10 @@ on:
|
|||||||
description: Change request ID (required for decommission mode — validated against CMDB)
|
description: Change request ID (required for decommission mode — validated against CMDB)
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
||||||
|
environment:
|
||||||
|
description: Target environment override (dev/qa/prod/dr); when empty, the contract's environment field is used
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
@@ -78,7 +82,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
repository: acdl/acdl
|
repository: acdl/acdl
|
||||||
path: platform
|
path: platform
|
||||||
ref: v1.6
|
ref: v1.9
|
||||||
|
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@@ -120,7 +124,11 @@ jobs:
|
|||||||
;;
|
;;
|
||||||
*) echo "Unknown mode: ${{ inputs.mode }}"; exit 1 ;;
|
*) echo "Unknown mode: ${{ inputs.mode }}"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
bash platform/scripts/run_platform.sh $MODE_FLAG "${{ inputs.contract }}"
|
ENV_FLAG=""
|
||||||
|
if [ -n "${{ inputs.environment }}" ]; then
|
||||||
|
ENV_FLAG="--environment ${{ inputs.environment }}"
|
||||||
|
fi
|
||||||
|
bash platform/scripts/run_platform.sh $MODE_FLAG $ENV_FLAG "${{ inputs.contract }}"
|
||||||
|
|
||||||
- name: Post stage summary comment to PR
|
- name: Post stage summary comment to PR
|
||||||
if: success() && github.event_name == 'pull_request'
|
if: success() && github.event_name == 'pull_request'
|
||||||
|
|||||||
@@ -8,8 +8,8 @@
|
|||||||
# declared difference is the forge/runtime, not the stages or commands.
|
# declared difference is the forge/runtime, not the stages or commands.
|
||||||
#
|
#
|
||||||
# Consumer repos invoke this workflow via a versioned tag (floating MAJOR + MINOR):
|
# Consumer repos invoke this workflow via a versioned tag (floating MAJOR + MINOR):
|
||||||
# uses: acdl/.gitea/workflows/deploy.yml@v1.6 (Gitea)
|
# uses: acdl/.gitea/workflows/deploy.yml@v1.9 (Gitea)
|
||||||
# uses: acdl/.github/workflows/deploy.yml@v1.6 (GitHub)
|
# uses: acdl/.github/workflows/deploy.yml@v1.9 (GitHub)
|
||||||
#
|
#
|
||||||
# Unversioned references (@main, bare) are discouraged — the consumer's setup
|
# Unversioned references (@main, bare) are discouraged — the consumer's setup
|
||||||
# must be immutable + resilient. The versioned tag is the only immutability
|
# must be immutable + resilient. The versioned tag is the only immutability
|
||||||
@@ -60,6 +60,10 @@ on:
|
|||||||
description: Change request ID (required for decommission mode — validated against CMDB)
|
description: Change request ID (required for decommission mode — validated against CMDB)
|
||||||
type: string
|
type: string
|
||||||
default: ""
|
default: ""
|
||||||
|
environment:
|
||||||
|
description: Target environment override (dev/qa/prod/dr); when empty, the contract's environment field is used
|
||||||
|
type: string
|
||||||
|
default: ""
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
id-token: write
|
id-token: write
|
||||||
@@ -78,7 +82,7 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
repository: acdl/acdl
|
repository: acdl/acdl
|
||||||
path: platform
|
path: platform
|
||||||
ref: v1.6
|
ref: v1.9
|
||||||
|
|
||||||
- uses: actions/setup-python@v5
|
- uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
@@ -120,7 +124,11 @@ jobs:
|
|||||||
;;
|
;;
|
||||||
*) echo "Unknown mode: ${{ inputs.mode }}"; exit 1 ;;
|
*) echo "Unknown mode: ${{ inputs.mode }}"; exit 1 ;;
|
||||||
esac
|
esac
|
||||||
bash platform/scripts/run_platform.sh $MODE_FLAG "${{ inputs.contract }}"
|
ENV_FLAG=""
|
||||||
|
if [ -n "${{ inputs.environment }}" ]; then
|
||||||
|
ENV_FLAG="--environment ${{ inputs.environment }}"
|
||||||
|
fi
|
||||||
|
bash platform/scripts/run_platform.sh $MODE_FLAG $ENV_FLAG "${{ inputs.contract }}"
|
||||||
|
|
||||||
- name: Post stage summary comment to PR
|
- name: Post stage summary comment to PR
|
||||||
if: success() && github.event_name == 'pull_request'
|
if: success() && github.event_name == 'pull_request'
|
||||||
|
|||||||
@@ -76,8 +76,8 @@ Planned future features (no dates; tracked in the internal roadmap):
|
|||||||
consumer creates a module directly from the contract file (the
|
consumer creates a module directly from the contract file (the
|
||||||
"composition" mechanism, redesigned).
|
"composition" mechanism, redesigned).
|
||||||
- **Compliance milestone** — per-module compliance extension points (GDPR,
|
- **Compliance milestone** — per-module compliance extension points (GDPR,
|
||||||
SOX, SOC2, HIPAA, DORA) wired into the pipeline.
|
SOX, SOC2, DORA) wired into the pipeline.
|
||||||
- **Additional substrate adapters** — beyond the Terraform adapter.
|
- **Additional engine adapters** — beyond the Terraform adapter.
|
||||||
- **Environment self-service** — a consumer-facing flow to request and
|
- **Environment self-service** — a consumer-facing flow to request and
|
||||||
provision a new platform-managed environment (today it is a platform-team
|
provision a new platform-managed environment (today it is a platform-team
|
||||||
action).
|
action).
|
||||||
@@ -117,9 +117,9 @@ flowchart TD
|
|||||||
|
|
||||||
The platform validates the architecture's claim that the **stack
|
The platform validates the architecture's claim that the **stack
|
||||||
commitments do not require a polyglot mess**: the adapter is the only
|
commitments do not require a polyglot mess**: the adapter is the only
|
||||||
substrate-specific code. `modules/`, `schemas/`, `contracts/`,
|
engine-specific code. `modules/`, `schemas/`, `contracts/`,
|
||||||
`core/confidence_signal.py`, `core/contract_resolver.py`, and
|
`core/confidence_signal.py`, `core/contract_resolver.py`, and
|
||||||
`core/outbox_writer.py` are all substrate-agnostic (no `aws_s3_bucket` /
|
`core/outbox_writer.py` are all engine-agnostic (no `aws_s3_bucket` /
|
||||||
`aws_` infrastructure terms).
|
`aws_` infrastructure terms).
|
||||||
|
|
||||||
## How to run
|
## How to run
|
||||||
@@ -258,7 +258,7 @@ across all modules; `static-assets` is the worked example.
|
|||||||
| `core/` | Platform code: contract resolver, confidence signal, outbox writer, environment check, environments, separation of duties, HITL/ledger designs | active |
|
| `core/` | Platform code: contract resolver, confidence signal, outbox writer, environment check, environments, separation of duties, HITL/ledger designs | active |
|
||||||
| `schemas/` | JSON Schemas: stack, contract, PolicyCheckResult, pipeline contract, deploy pipeline contract (draft 2020-12) | active |
|
| `schemas/` | JSON Schemas: stack, contract, PolicyCheckResult, pipeline contract, deploy pipeline contract (draft 2020-12) | active |
|
||||||
| `pipelines/` | Central pipeline contracts: `ci.yaml` (CI), `deploy.yaml` (deployment) | active |
|
| `pipelines/` | Central pipeline contracts: `ci.yaml` (CI), `deploy.yaml` (deployment) | active |
|
||||||
| `adapters/` | Substrate adapters — the substrate adapter (the only substrate-specific code per §12) + the policy adapter | active |
|
| `adapters/` | Angine adapters — the engine adapter (the only engine-specific code per §12) + the policy adapter | active |
|
||||||
| `terraform/` | State backend (S3 + DynamoDB) + platform TF (`terraform/spike/`) + bootstrap scripts (`terraform/bootstrap/`) | active |
|
| `terraform/` | State backend (S3 + DynamoDB) + platform TF (`terraform/spike/`) + bootstrap scripts (`terraform/bootstrap/`) | active |
|
||||||
| `modules/` | Primitives + modules + `registry.json`. Primitives: s3, vpc, ecs-cluster, ecs-service, iam-role, alb, ecr, cloudfront, waf, rds. Modules: microservice, static-assets. Each module has a `examples/` directory with validated contract examples | active |
|
| `modules/` | Primitives + modules + `registry.json`. Primitives: s3, vpc, ecs-cluster, ecs-service, iam-role, alb, ecr, cloudfront, waf, rds. Modules: microservice, static-assets. Each module has a `examples/` directory with validated contract examples | active |
|
||||||
| `contracts/` | Sample consumer contracts (`static-assets.yaml`, `microservice.yaml`) | active |
|
| `contracts/` | Sample consumer contracts (`static-assets.yaml`, `microservice.yaml`) | active |
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
## Overview
|
## Overview
|
||||||
|
|
||||||
Adapters translate the substrate-agnostic Target Stack IR to substrate-specific formats. The Terraform adapter is the primary adapter (IR → HCL). Policy adapters translate security tool output into normalized `PolicyCheckResult` records that the confidence signal consumes in an engine-agnostic way.
|
Adapters translate the engine-agnostic Target Stack IR to engine-specific formats. The Terraform adapter is the primary adapter (IR → HCL). Policy adapters translate security tool output into normalized `PolicyCheckResult` records that the confidence signal consumes in an engine-agnostic way.
|
||||||
|
|
||||||
## Existing Adapters
|
## Existing Adapters
|
||||||
|
|
||||||
|
|||||||
@@ -4,16 +4,22 @@ Kyverno is a Kubernetes-native policy engine. It evaluates K8s manifests
|
|||||||
and produces PolicyReport resources. This adapter translates those results
|
and produces PolicyReport resources. This adapter translates those results
|
||||||
to the normalized PolicyCheckResult schema (engine: "kyverno").
|
to the normalized PolicyCheckResult schema (engine: "kyverno").
|
||||||
|
|
||||||
D-053: the platform emits Terraform, not K8s manifests. This adapter is
|
v1.9 (REQ-111): the translator is fleshed out — full PolicyReport →
|
||||||
ready but inactive for Terraform-only stacks. It activates when the GitOps
|
PolicyCheckResult mapping with severity + skip-with-reason handling. It
|
||||||
reconciler (roadmap) emits K8s manifests. Sample policies are included as
|
remains inactive for Terraform-only stacks (guard preserved — emits a
|
||||||
documentation at adapters/kyverno/policies/.
|
single SKIPPED `KYVERNO_INACTIVE_TF_STACK` record when no K8s manifests).
|
||||||
|
A `--kube-version` stub is parsed but not yet used (for future GitOps).
|
||||||
|
|
||||||
CLI: kyverno_adapter.py <policyreport.json> <contract-id>
|
D-053: the platform emits Terraform, not K8s manifests. This adapter
|
||||||
|
activates when the GitOps reconciler (roadmap) emits K8s manifests.
|
||||||
|
Sample policies are included as documentation at adapters/kyverno/policies/.
|
||||||
|
|
||||||
|
CLI: kyverno_adapter.py <policyreport.json> <contract-id> [--kube-version <ver>]
|
||||||
"""
|
"""
|
||||||
|
|
||||||
import datetime
|
import datetime
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
@@ -23,14 +29,17 @@ SEVERITY_MAP = {
|
|||||||
"medium": "medium",
|
"medium": "medium",
|
||||||
"low": "low",
|
"low": "low",
|
||||||
"info": "info",
|
"info": "info",
|
||||||
|
"informational": "info",
|
||||||
}
|
}
|
||||||
|
|
||||||
RESULT_MAP = {
|
RESULT_MAP = {
|
||||||
"pass": "pass",
|
"pass": "pass",
|
||||||
"fail": "fail",
|
"fail": "fail",
|
||||||
"warn": "skipped",
|
"warn": "skipped",
|
||||||
|
"warning": "skipped",
|
||||||
"error": "error",
|
"error": "error",
|
||||||
"skip": "skipped",
|
"skip": "skipped",
|
||||||
|
"skipped": "skipped",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -43,39 +52,85 @@ def _to_pcr(entry, contract_id):
|
|||||||
severity = SEVERITY_MAP.get(str(severity_raw).lower(), "info")
|
severity = SEVERITY_MAP.get(str(severity_raw).lower(), "info")
|
||||||
result_raw = entry.get("result", "skip")
|
result_raw = entry.get("result", "skip")
|
||||||
result = RESULT_MAP.get(str(result_raw).lower(), "error")
|
result = RESULT_MAP.get(str(result_raw).lower(), "error")
|
||||||
|
# Skip-with-reason: a skipped result carries a message that explains why.
|
||||||
|
message = entry.get("message", "")
|
||||||
|
if result == "skipped" and not message:
|
||||||
|
message = entry.get("skipReason", entry.get("skippedMessage", "skipped (no reason)"))
|
||||||
|
policy = entry.get("policy", "")
|
||||||
|
rule = entry.get("rule", "")
|
||||||
|
rule_id = f"{policy}/{rule}" if rule else (policy or "KYVERNO_UNKNOWN")
|
||||||
|
resource = entry.get("resource", "")
|
||||||
|
if not resource and entry.get("name"):
|
||||||
|
# Construct a resource ref from kind/name/namespace when present.
|
||||||
|
kind = entry.get("kind", "")
|
||||||
|
ns = entry.get("namespace", "")
|
||||||
|
resource = f"{kind}/{ns}/{entry.get('name')}" if kind else entry.get("name", "")
|
||||||
return {
|
return {
|
||||||
"contractId": contract_id,
|
"contractId": contract_id,
|
||||||
"evaluatedAt": _iso8601_now(),
|
"evaluatedAt": _iso8601_now(),
|
||||||
"engine": "kyverno",
|
"engine": "kyverno",
|
||||||
"ruleId": entry.get("policy", "KYVERNO_UNKNOWN"),
|
"ruleId": rule_id,
|
||||||
"severity": severity,
|
"severity": severity,
|
||||||
"result": result,
|
"result": result,
|
||||||
"message": entry.get("message", ""),
|
"message": message,
|
||||||
"evidence": {
|
"evidence": {
|
||||||
"resource": entry.get("resource", ""),
|
"resource": resource,
|
||||||
"namespace": entry.get("namespace", ""),
|
"namespace": entry.get("namespace", ""),
|
||||||
"kind": entry.get("kind", ""),
|
"kind": entry.get("kind", ""),
|
||||||
"name": entry.get("name", ""),
|
"name": entry.get("name", ""),
|
||||||
|
"policy": policy,
|
||||||
|
"rule": rule,
|
||||||
},
|
},
|
||||||
"resourceRef": entry.get("resource", ""),
|
"resourceRef": resource,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def adapt(policyreport_json_path, contract_id):
|
def _emit_inactive_tf(contract_id):
|
||||||
|
"""Emit a SKIPPED record when the platform emits Terraform, not K8s manifests."""
|
||||||
|
return {
|
||||||
|
"contractId": contract_id,
|
||||||
|
"evaluatedAt": _iso8601_now(),
|
||||||
|
"engine": "kyverno",
|
||||||
|
"ruleId": "KYVERNO_INACTIVE_TF_STACK",
|
||||||
|
"severity": "info",
|
||||||
|
"result": "skipped",
|
||||||
|
"message": "Kyverno inactive — the platform emits Terraform, not K8s manifests. Activates when the GitOps reconciler emits K8s manifests (D-053).",
|
||||||
|
"evidence": {},
|
||||||
|
"resourceRef": "",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def adapt(policyreport_json_path, contract_id, kube_version=None):
|
||||||
with open(policyreport_json_path, "r", encoding="utf-8") as fh:
|
with open(policyreport_json_path, "r", encoding="utf-8") as fh:
|
||||||
data = json.load(fh)
|
data = json.load(fh)
|
||||||
out = []
|
out = []
|
||||||
# Kyverno PolicyReport has a .results[] array
|
# Kyverno PolicyReport has a .results[] array.
|
||||||
results = data.get("results", [])
|
results = data.get("results", [])
|
||||||
if not isinstance(results, list):
|
if not isinstance(results, list):
|
||||||
results = []
|
results = []
|
||||||
for entry in results:
|
for entry in results:
|
||||||
out.append(_to_pcr(entry, contract_id))
|
out.append(_to_pcr(entry, contract_id))
|
||||||
|
if not out:
|
||||||
|
out.append(_emit_inactive_tf(contract_id))
|
||||||
|
# kube_version is parsed but not yet used (future GitOps reconciler).
|
||||||
|
_ = kube_version
|
||||||
return out
|
return out
|
||||||
|
|
||||||
|
|
||||||
|
def adapt_inactive(contract_id):
|
||||||
|
"""Convenience: emit the inactive-for-TF record directly (no report file)."""
|
||||||
|
return [_emit_inactive_tf(contract_id)]
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
if len(sys.argv) != 3:
|
kube_ver = None
|
||||||
print("usage: kyverno_adapter.py <policyreport.json> <contract-id>", file=sys.stderr)
|
args = sys.argv[1:]
|
||||||
|
if "--kube-version" in args:
|
||||||
|
idx = args.index("--kube-version")
|
||||||
|
if idx + 1 < len(args):
|
||||||
|
kube_ver = args[idx + 1]
|
||||||
|
args = args[:idx] + args[idx + 2:]
|
||||||
|
if len(args) != 2:
|
||||||
|
print("usage: kyverno_adapter.py <policyreport.json> <contract-id> [--kube-version <ver>]", file=sys.stderr)
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
print(json.dumps(adapt(sys.argv[1], sys.argv[2]), indent=2))
|
print(json.dumps(adapt(args[0], args[1], kube_version=kube_ver), indent=2))
|
||||||
@@ -6,7 +6,7 @@ root module that calls the L1 modules, the stack-typed relationships to
|
|||||||
Terraform module references, and emits a Terraform plan from the stack.
|
Terraform module references, and emits a Terraform plan from the stack.
|
||||||
|
|
||||||
The adapter is a THIN LAYER; it does not own L1/L2 content — it only
|
The adapter is a THIN LAYER; it does not own L1/L2 content — it only
|
||||||
translates. Substrate-agnostic in, Terraform out.
|
translates. Angine-agnostic in, Terraform out.
|
||||||
|
|
||||||
Phase 09 spike: handled one L1 (s3, stack type aws:s3:bucket).
|
Phase 09 spike: handled one L1 (s3, stack type aws:s3:bucket).
|
||||||
Phase 13: generalized the resource/output emission via TYPE_MAP +
|
Phase 13: generalized the resource/output emission via TYPE_MAP +
|
||||||
@@ -21,7 +21,7 @@ import os
|
|||||||
import sys
|
import sys
|
||||||
|
|
||||||
|
|
||||||
# Stack type -> Terraform resource type. The only substrate-specific table.
|
# Stack type -> Terraform resource type. The only engine-specific table.
|
||||||
# As more L1s land, this grows; the L1 content + stack do not change.
|
# As more L1s land, this grows; the L1 content + stack do not change.
|
||||||
TYPE_MAP = {
|
TYPE_MAP = {
|
||||||
"aws:s3:bucket": "aws_s3_bucket",
|
"aws:s3:bucket": "aws_s3_bucket",
|
||||||
@@ -235,8 +235,10 @@ def _emit_resource(resource, type_by_id=None):
|
|||||||
else _tf_value([sg_val] if isinstance(sg_val, str) else sg_val or [])
|
else _tf_value([sg_val] if isinstance(sg_val, str) else sg_val or [])
|
||||||
))
|
))
|
||||||
body.append("}")
|
body.append("}")
|
||||||
body.append("desired_count = 1")
|
desired = inputs.get("desired_count", 1)
|
||||||
body.append("launch_type = \"FARGATE\"")
|
launch = inputs.get("launch_type", "FARGATE")
|
||||||
|
body.append(f"desired_count = {desired}")
|
||||||
|
body.append(f'launch_type = "{launch}"')
|
||||||
body.append("task_definition = aws_ecs_task_definition.service-taskdefinition.arn")
|
body.append("task_definition = aws_ecs_task_definition.service-taskdefinition.arn")
|
||||||
body.append("name = \"acdl-microservice\"")
|
body.append("name = \"acdl-microservice\"")
|
||||||
nfrs = resource.get("nfrs", {})
|
nfrs = resource.get("nfrs", {})
|
||||||
@@ -269,9 +271,11 @@ def _emit_resource(resource, type_by_id=None):
|
|||||||
body.append("}")
|
body.append("}")
|
||||||
body.append("load_balancer_arn = aws_lb.alb-loadbalancer.id")
|
body.append("load_balancer_arn = aws_lb.alb-loadbalancer.id")
|
||||||
if rtype == "aws:elbv2:loadbalancer":
|
if rtype == "aws:elbv2:loadbalancer":
|
||||||
body.append("load_balancer_type = \"application\"")
|
lb_type = inputs.get("load_balancer_type", "application")
|
||||||
|
body.append(f'load_balancer_type = "{lb_type}"')
|
||||||
if rtype == "aws:elbv2:targetgroup":
|
if rtype == "aws:elbv2:targetgroup":
|
||||||
body.append("target_type = \"ip\"")
|
tgt_type = inputs.get("target_type", "ip")
|
||||||
|
body.append(f'target_type = "{tgt_type}"')
|
||||||
body.append("vpc_id = aws_vpc.vpc-vpc.id")
|
body.append("vpc_id = aws_vpc.vpc-vpc.id")
|
||||||
body.append("protocol = \"HTTP\"")
|
body.append("protocol = \"HTTP\"")
|
||||||
if rtype == "aws:ec2:routetable":
|
if rtype == "aws:ec2:routetable":
|
||||||
@@ -280,7 +284,8 @@ def _emit_resource(resource, type_by_id=None):
|
|||||||
body.append(" gateway_id = aws_internet_gateway.vpc-igw.id")
|
body.append(" gateway_id = aws_internet_gateway.vpc-igw.id")
|
||||||
body.append("}")
|
body.append("}")
|
||||||
body.append("tags = {")
|
body.append("tags = {")
|
||||||
body.append(' Name = "acdl-microservice-rt"')
|
rt_name = inputs.get("name", "app")
|
||||||
|
body.append(f' Name = "{rt_name}-rt"')
|
||||||
body.append("}")
|
body.append("}")
|
||||||
if rtype == "aws:cloudfront:originaccesscontrol":
|
if rtype == "aws:cloudfront:originaccesscontrol":
|
||||||
name = inputs.get("name", "acdl-oac")
|
name = inputs.get("name", "acdl-oac")
|
||||||
@@ -478,8 +483,10 @@ def _emit_resource(resource, type_by_id=None):
|
|||||||
"UPTIME_KUMA_MONITOR_CONFIG": json.dumps(all_checks),
|
"UPTIME_KUMA_MONITOR_CONFIG": json.dumps(all_checks),
|
||||||
"UPTIME_KUMA_ALERT_CONFIG": json.dumps(alert_channels),
|
"UPTIME_KUMA_ALERT_CONFIG": json.dumps(alert_channels),
|
||||||
}
|
}
|
||||||
body.append("desired_count = 1")
|
desired = inputs.get("desired_count", 1)
|
||||||
body.append("launch_type = \"FARGATE\"")
|
launch = inputs.get("launch_type", "FARGATE")
|
||||||
|
body.append(f"desired_count = {desired}")
|
||||||
|
body.append(f'launch_type = "{launch}"')
|
||||||
body.append("network_configuration {")
|
body.append("network_configuration {")
|
||||||
body.append(" subnets = [\"subnet-uptime\"]")
|
body.append(" subnets = [\"subnet-uptime\"]")
|
||||||
body.append(" security_groups = [\"sg-uptime\"]")
|
body.append(" security_groups = [\"sg-uptime\"]")
|
||||||
@@ -508,11 +515,13 @@ def _emit_igw(resources):
|
|||||||
vpc_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:vpc"), "vpc-vpc")
|
vpc_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:vpc"), "vpc-vpc")
|
||||||
subnet_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:subnet"), "vpc-subnet")
|
subnet_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:subnet"), "vpc-subnet")
|
||||||
rt_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:routetable"), "vpc-routetable")
|
rt_id = next((r["id"] for r in resources if r["type"] == "aws:ec2:routetable"), "vpc-routetable")
|
||||||
|
vpc_res = next((r for r in resources if r["type"] == "aws:ec2:vpc"), None)
|
||||||
|
igw_name = (vpc_res.get("inputs", {}).get("name", "app") if vpc_res else "app")
|
||||||
parts = []
|
parts = []
|
||||||
parts.append(_resource_block("vpc-igw", "aws_internet_gateway", [
|
parts.append(_resource_block("vpc-igw", "aws_internet_gateway", [
|
||||||
f"vpc_id = aws_vpc.{vpc_id}.id",
|
f"vpc_id = aws_vpc.{vpc_id}.id",
|
||||||
"tags = {",
|
"tags = {",
|
||||||
' Name = "acdl-microservice-igw"',
|
f' Name = "{igw_name}-igw"',
|
||||||
"}",
|
"}",
|
||||||
]))
|
]))
|
||||||
parts.append(_resource_block("vpc-rta", "aws_route_table_association", [
|
parts.append(_resource_block("vpc-rta", "aws_route_table_association", [
|
||||||
|
|||||||
@@ -1,14 +1,16 @@
|
|||||||
"""Wiz adapter — translate Wiz API results to ACDL PolicyCheckResult records.
|
"""Wiz adapter — translate Wiz API results to ACDL PolicyCheckResult records.
|
||||||
|
|
||||||
Wiz is a SaaS security platform with a REST API (issues, security graph
|
Wiz is a SaaS security platform with a GraphQL API. This adapter
|
||||||
queries). This adapter translates Wiz issue records to the normalized
|
translates Wiz issue records to the normalized PolicyCheckResult schema
|
||||||
PolicyCheckResult schema (engine: "wiz"), matching the Checkov adapter
|
(engine: "wiz"), matching the Checkov adapter pattern.
|
||||||
pattern.
|
|
||||||
|
|
||||||
D-052: stub + schema path. The adapter degrades gracefully when Wiz is
|
v1.9 (REQ-110): the adapter is a real API client. `WizClient` queries the
|
||||||
not configured — it emits a single SKIPPED record (WIZ_NOT_CONFIGURED)
|
Wiz GraphQL API (`<WIZ_API_URL>/graphql`, Bearer auth, `issues` query)
|
||||||
so the confidence policy input stays non-empty. The pipeline invokes it
|
and translates results → PolicyCheckResult records. It degrades
|
||||||
optionally when WIZ_API_TOKEN is set.
|
gracefully (single `SKIPPED` `WIZ_NOT_CONFIGURED` record) when
|
||||||
|
`WIZ_API_TOKEN` or `WIZ_API_URL` is unset (D-052). Pagination is handled
|
||||||
|
via `pageInfo.hasNextPage` + `endCursor`. Offline tests use a recorded
|
||||||
|
GraphQL fixture.
|
||||||
|
|
||||||
CLI: wiz_adapter.py <wiz_issues.json> <contract-id>
|
CLI: wiz_adapter.py <wiz_issues.json> <contract-id>
|
||||||
"""
|
"""
|
||||||
@@ -24,6 +26,7 @@ SEVERITY_MAP = {
|
|||||||
"HIGH": "high",
|
"HIGH": "high",
|
||||||
"MEDIUM": "medium",
|
"MEDIUM": "medium",
|
||||||
"LOW": "low",
|
"LOW": "low",
|
||||||
|
"INFORMATIONAL": "info",
|
||||||
"INFO": "info",
|
"INFO": "info",
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -35,6 +38,24 @@ RESULT_MAP = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
_ISSUES_QUERY = """
|
||||||
|
query IssuesQuery($filterBy: IssueFilter, $after: String) {
|
||||||
|
issues(filterBy: $filterBy, after: $after) {
|
||||||
|
nodes {
|
||||||
|
id
|
||||||
|
severity
|
||||||
|
title
|
||||||
|
status
|
||||||
|
entity { id name type cloudPlatform }
|
||||||
|
control { id name }
|
||||||
|
createdAt
|
||||||
|
}
|
||||||
|
pageInfo { hasNextPage endCursor }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
def _iso8601_now():
|
def _iso8601_now():
|
||||||
return datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
|
return datetime.datetime.now(datetime.timezone.utc).strftime("%Y-%m-%dT%H:%M:%SZ")
|
||||||
|
|
||||||
@@ -44,22 +65,23 @@ def _to_pcr(wiz_issue, contract_id):
|
|||||||
severity = SEVERITY_MAP.get(str(severity_raw).upper(), "info")
|
severity = SEVERITY_MAP.get(str(severity_raw).upper(), "info")
|
||||||
status = wiz_issue.get("status", "OPEN")
|
status = wiz_issue.get("status", "OPEN")
|
||||||
result = RESULT_MAP.get(str(status).upper(), "error")
|
result = RESULT_MAP.get(str(status).upper(), "error")
|
||||||
control = wiz_issue.get("control", {})
|
control = wiz_issue.get("control", {}) or {}
|
||||||
|
entity = wiz_issue.get("entity", {}) or {}
|
||||||
|
rule_id = control.get("name") or wiz_issue.get("id") or "WIZ_UNKNOWN"
|
||||||
return {
|
return {
|
||||||
"contractId": contract_id,
|
"contractId": contract_id,
|
||||||
"evaluatedAt": _iso8601_now(),
|
"evaluatedAt": _iso8601_now(),
|
||||||
"engine": "wiz",
|
"engine": "wiz",
|
||||||
"ruleId": wiz_issue.get("id", control.get("id", "WIZ_UNKNOWN")),
|
"ruleId": rule_id,
|
||||||
"severity": severity,
|
"severity": severity,
|
||||||
"result": result,
|
"result": result,
|
||||||
"message": wiz_issue.get("title", control.get("name", "")),
|
"message": wiz_issue.get("title", control.get("name", "")),
|
||||||
"evidence": {
|
"evidence": {
|
||||||
"resource": wiz_issue.get("entity", {}).get("id"),
|
"resource": entity.get("id"),
|
||||||
"resource_name": wiz_issue.get("entity", {}).get("name"),
|
"resource_name": entity.get("name"),
|
||||||
"cloud_platform": wiz_issue.get("entity", {}).get("cloudPlatform"),
|
"cloud_platform": entity.get("cloudPlatform"),
|
||||||
"subscription_id": wiz_issue.get("entity", {}).get("subscriptionId"),
|
|
||||||
},
|
},
|
||||||
"resourceRef": wiz_issue.get("entity", {}).get("id", ""),
|
"resourceRef": entity.get("id", ""),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@@ -71,19 +93,84 @@ def _emit_not_configured(contract_id):
|
|||||||
"ruleId": "WIZ_NOT_CONFIGURED",
|
"ruleId": "WIZ_NOT_CONFIGURED",
|
||||||
"severity": "info",
|
"severity": "info",
|
||||||
"result": "skipped",
|
"result": "skipped",
|
||||||
"message": "Wiz adapter not configured (WIZ_API_TOKEN not set); degraded gracefully (D-052).",
|
"message": "Wiz adapter not configured (WIZ_API_TOKEN or WIZ_API_URL not set); degraded gracefully (D-052).",
|
||||||
"evidence": {},
|
"evidence": {},
|
||||||
"resourceRef": "",
|
"resourceRef": "",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
class WizClient:
|
||||||
|
"""Real Wiz GraphQL API client (REQ-110).
|
||||||
|
|
||||||
|
Reads WIZ_API_TOKEN + WIZ_API_URL from the environment. `fetch_issues`
|
||||||
|
queries the Wiz GraphQL API and returns a list of issue dicts.
|
||||||
|
Pagination is handled via pageInfo.hasNextPage + endCursor.
|
||||||
|
"""
|
||||||
|
|
||||||
|
def __init__(self, token=None, url=None):
|
||||||
|
self.token = token or os.environ.get("WIZ_API_TOKEN", "")
|
||||||
|
self.url = (url or os.environ.get("WIZ_API_URL", "")).rstrip("/")
|
||||||
|
if not self.token or not self.url:
|
||||||
|
raise RuntimeError("WizClient requires WIZ_API_TOKEN + WIZ_API_URL")
|
||||||
|
|
||||||
|
def _post(self, query, variables):
|
||||||
|
import urllib.request
|
||||||
|
endpoint = f"{self.url}/graphql"
|
||||||
|
payload = json.dumps({"query": query, "variables": variables}).encode("utf-8")
|
||||||
|
req = urllib.request.Request(
|
||||||
|
endpoint,
|
||||||
|
data=payload,
|
||||||
|
headers={
|
||||||
|
"Authorization": f"Bearer {self.token}",
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
},
|
||||||
|
method="POST",
|
||||||
|
)
|
||||||
|
with urllib.request.urlopen(req, timeout=30) as resp:
|
||||||
|
return json.loads(resp.read().decode("utf-8"))
|
||||||
|
|
||||||
|
def fetch_issues(self, filter_by=None, max_pages=10):
|
||||||
|
issues = []
|
||||||
|
after = None
|
||||||
|
for _ in range(max_pages):
|
||||||
|
data = self._post(_ISSUES_QUERY, {"filterBy": filter_by or {}, "after": after})
|
||||||
|
root = data.get("data", {}).get("issues", {})
|
||||||
|
nodes = root.get("nodes", [])
|
||||||
|
issues.extend(nodes)
|
||||||
|
page_info = root.get("pageInfo", {})
|
||||||
|
if not page_info.get("hasNextPage"):
|
||||||
|
break
|
||||||
|
after = page_info.get("endCursor")
|
||||||
|
return issues
|
||||||
|
|
||||||
|
|
||||||
|
def fetch_and_adapt(contract_id, filter_by=None, client=None):
|
||||||
|
"""Fetch Wiz issues via the real client and translate to PolicyCheckResult.
|
||||||
|
|
||||||
|
When the client is not configured (no token/url), emit the SKIPPED
|
||||||
|
WIZ_NOT_CONFIGURED record (graceful degrade).
|
||||||
|
"""
|
||||||
|
if client is None:
|
||||||
|
try:
|
||||||
|
client = WizClient()
|
||||||
|
except RuntimeError:
|
||||||
|
return [_emit_not_configured(contract_id)]
|
||||||
|
issues = client.fetch_issues(filter_by=filter_by)
|
||||||
|
if not issues:
|
||||||
|
return [_emit_not_configured(contract_id)]
|
||||||
|
return [_to_pcr(i, contract_id) for i in issues]
|
||||||
|
|
||||||
|
|
||||||
def adapt(wiz_json_path, contract_id):
|
def adapt(wiz_json_path, contract_id):
|
||||||
with open(wiz_json_path, "r", encoding="utf-8") as fh:
|
with open(wiz_json_path, "r", encoding="utf-8") as fh:
|
||||||
data = json.load(fh)
|
data = json.load(fh)
|
||||||
out = []
|
out = []
|
||||||
# Accept either a bare list of issues or an object with an "issues" key.
|
# Accept either a bare list of issues or an object with an "issues" key
|
||||||
|
# or a full GraphQL response shape ({data: {issues: {nodes: [...]}}}).
|
||||||
if isinstance(data, list):
|
if isinstance(data, list):
|
||||||
issues = data
|
issues = data
|
||||||
|
elif "data" in data and "issues" in data.get("data", {}):
|
||||||
|
issues = data["data"]["issues"].get("nodes", [])
|
||||||
else:
|
else:
|
||||||
issues = data.get("issues", [])
|
issues = data.get("issues", [])
|
||||||
if not isinstance(issues, list):
|
if not isinstance(issues, list):
|
||||||
@@ -96,7 +183,7 @@ def adapt(wiz_json_path, contract_id):
|
|||||||
|
|
||||||
|
|
||||||
def is_configured():
|
def is_configured():
|
||||||
return bool(os.environ.get("WIZ_API_TOKEN"))
|
return bool(os.environ.get("WIZ_API_TOKEN") and os.environ.get("WIZ_API_URL"))
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
|||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# ACDL sample consumer contract — microservice module (dev)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the dev job;
|
||||||
|
# no environment field editing. Interpolation resolves against dev.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: microservice
|
||||||
|
environment: dev
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
|
image: public.ecr.aws/docker/library/nginx:latest
|
||||||
|
port: 80
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# ACDL sample consumer contract — microservice module (dr)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the dr job;
|
||||||
|
# no environment field editing. Interpolation resolves against dr.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: microservice
|
||||||
|
environment: dr
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
|
image: public.ecr.aws/docker/library/nginx:latest
|
||||||
|
port: 80
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# ACDL sample consumer contract — microservice module (prod)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the prod job;
|
||||||
|
# no environment field editing. Interpolation resolves against prod.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: microservice
|
||||||
|
environment: prod
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
|
image: public.ecr.aws/docker/library/nginx:latest
|
||||||
|
port: 80
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
# ACDL sample consumer contract — microservice module (qa)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the qa job;
|
||||||
|
# no environment field editing. Interpolation resolves against qa.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: microservice
|
||||||
|
environment: qa
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
|
image: public.ecr.aws/docker/library/nginx:latest
|
||||||
|
port: 80
|
||||||
@@ -1,13 +1,14 @@
|
|||||||
# ACDL sample consumer contract — microservice module (dev)
|
# ACDL sample consumer contract — microservice module (dev)
|
||||||
#
|
#
|
||||||
# Reference example for an ECS Fargate microservice deployment.
|
# Reference example for an ECS Fargate microservice deployment.
|
||||||
# This contract declares only the inputs the composition wires reference
|
# Interpolation (D-081): bucket_name uses the naming pattern that includes
|
||||||
# (bucket_name, region) plus a representative image/port.
|
# region, aws account id, and environment:
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
# acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
module: microservice
|
module: microservice
|
||||||
environment: dev
|
environment: dev
|
||||||
inputs:
|
inputs:
|
||||||
bucket_name: acdl-microservice-demo
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
region: us-east-1
|
region: ${env.region}
|
||||||
image: public.ecr.aws/docker/library/nginx:latest
|
image: public.ecr.aws/docker/library/nginx:latest
|
||||||
port: 80
|
port: 80
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
# ACDL sample consumer contract — static-assets module (dev)
|
||||||
|
# Per-environment contract (REQ-105). The dev default
|
||||||
|
# (contracts/static-assets.yaml) remains for backwards compat; this file
|
||||||
|
# is the explicit per-env dev contract. Interpolation resolves against dev.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: static-assets
|
||||||
|
environment: dev
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# ACDL sample consumer contract — static-assets module (dr)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the dr job;
|
||||||
|
# no environment field editing. Interpolation resolves against dr.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: static-assets
|
||||||
|
environment: dr
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# ACDL sample consumer contract — static-assets module (prod)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the prod job;
|
||||||
|
# no environment field editing. Interpolation resolves against prod.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: static-assets
|
||||||
|
environment: prod
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
@@ -0,0 +1,9 @@
|
|||||||
|
# ACDL sample consumer contract — static-assets module (qa)
|
||||||
|
# Per-environment contract (REQ-105). Promotion = running the qa job;
|
||||||
|
# no environment field editing. Interpolation resolves against qa.json.
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: static-assets
|
||||||
|
environment: qa
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
@@ -8,10 +8,16 @@
|
|||||||
#
|
#
|
||||||
# Validated against schemas/contract.schema.json.
|
# Validated against schemas/contract.schema.json.
|
||||||
# Resolved by core/contract_resolver.py to a Target Stack instance.
|
# Resolved by core/contract_resolver.py to a Target Stack instance.
|
||||||
|
#
|
||||||
|
# Interpolation (D-081): ${env.<field>} + ${contract.<field>} tokens are
|
||||||
|
# expanded by the resolver from the environment onboarding JSON. The
|
||||||
|
# bucket_name below demonstrates the naming pattern that includes region,
|
||||||
|
# aws account id, and environment:
|
||||||
|
# acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
module: static-assets
|
module: static-assets
|
||||||
environment: dev
|
environment: dev
|
||||||
inputs:
|
inputs:
|
||||||
bucket_name: acdl-spike-bucket
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
region: us-east-1
|
region: ${env.region}
|
||||||
@@ -0,0 +1,178 @@
|
|||||||
|
"""8-concern attestation matrix (REQ-109, D-084).
|
||||||
|
|
||||||
|
Implements the 8 concerns from `core/hitl_matrix_design.md` §10.4. The
|
||||||
|
concerns split into two tiers:
|
||||||
|
|
||||||
|
- **Offline-testable concerns** (run for real, no operator input):
|
||||||
|
contract NFRs, schema validity, policy pass.
|
||||||
|
- **Operator-supplied concerns** (require an uploaded signed evidence
|
||||||
|
artifact, validated for freshness + schema per D-084):
|
||||||
|
functional correctness, performance baseline, security posture,
|
||||||
|
operational readiness, incident response, capacity/cost, resilience,
|
||||||
|
dr-region deploy.
|
||||||
|
|
||||||
|
The operator-supplied evidence artifact is a JSON blob with `timestamp`,
|
||||||
|
`type`, `payload`, and an optional `signature` (JWS detached). Freshness
|
||||||
|
is validated against the window from §10.4. Signature verification runs
|
||||||
|
when `ACDL_ATTESTATION_SIGNING_KEY_ID` is set; it is skipped + logged
|
||||||
|
when unset (dev/CI — D-089). The matrix fails loud if an operator-supplied
|
||||||
|
concern is missing or expired for prod/dr.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import datetime
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
|
|
||||||
|
# Freshness windows (days) from hitl_matrix_design.md §10.4.
|
||||||
|
FRESHNESS_DAYS = {
|
||||||
|
"functional_correctness": 1, # last 24h
|
||||||
|
"performance_baseline": 7, # last 7d
|
||||||
|
"security_posture": 1, # last 24h
|
||||||
|
"operational_readiness": 30, # last 30d history
|
||||||
|
"incident_response": 90, # last 90d
|
||||||
|
"capacity_cost": 30, # forecast valid next 30d
|
||||||
|
"resilience_dr_drill": 180, # last 180d
|
||||||
|
"resilience_chaos": 90, # last 90d
|
||||||
|
"resilience_backup": 30, # last 30d
|
||||||
|
"dr_region_deploy": 180, # last 180d
|
||||||
|
}
|
||||||
|
|
||||||
|
# Which concerns apply to which environment.
|
||||||
|
ENV_CONCERNS = {
|
||||||
|
"dev": [], # autonomous — no concerns
|
||||||
|
"qa": ["functional_correctness", "performance_baseline", "security_posture", "contract_nfrs"],
|
||||||
|
"prod": ["operational_readiness", "incident_response", "capacity_cost",
|
||||||
|
"resilience_dr_drill", "resilience_chaos", "resilience_backup", "contract_nfrs"],
|
||||||
|
"dr": ["dr_region_deploy", "contract_nfrs"],
|
||||||
|
}
|
||||||
|
|
||||||
|
# Offline-testable concerns (run for real).
|
||||||
|
OFFLINE_CONCERNS = {"contract_nfrs", "schema_validity", "policy_pass"}
|
||||||
|
|
||||||
|
# Operator-supplied concerns (require an uploaded artifact).
|
||||||
|
OPERATOR_CONCERNS = {
|
||||||
|
"functional_correctness", "performance_baseline", "security_posture",
|
||||||
|
"operational_readiness", "incident_response", "capacity_cost",
|
||||||
|
"resilience_dr_drill", "resilience_chaos", "resilience_backup",
|
||||||
|
"dr_region_deploy",
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
def _parse_ts(ts: str) -> Optional[datetime.datetime]:
|
||||||
|
try:
|
||||||
|
return datetime.datetime.fromisoformat(ts.replace("Z", "+00:00"))
|
||||||
|
except (ValueError, AttributeError):
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
|
def _is_fresh(artifact: dict, concern: str) -> bool:
|
||||||
|
ts = _parse_ts(artifact.get("timestamp", ""))
|
||||||
|
if ts is None:
|
||||||
|
return False
|
||||||
|
window_days = FRESHNESS_DAYS.get(concern, 30)
|
||||||
|
age = datetime.datetime.now(datetime.timezone.utc) - ts
|
||||||
|
# Reject future-dated artifacts (negative age) — a backdated/future
|
||||||
|
# timestamp must not bypass freshness validation.
|
||||||
|
if age.total_seconds() < 0:
|
||||||
|
return False
|
||||||
|
return age.days <= window_days
|
||||||
|
|
||||||
|
|
||||||
|
def _verify_signature(artifact: dict) -> bool:
|
||||||
|
"""Verify the JWS detached signature when ACDL_ATTESTATION_SIGNING_KEY_ID is set.
|
||||||
|
|
||||||
|
When unset (dev/CI — D-089), signature verification is skipped + logged.
|
||||||
|
"""
|
||||||
|
key_id = os.environ.get("ACDL_ATTESTATION_SIGNING_KEY_ID", "")
|
||||||
|
if not key_id:
|
||||||
|
sys.stderr.write(
|
||||||
|
"[attestation] ACDL_ATTESTATION_SIGNING_KEY_ID unset — "
|
||||||
|
"signature verification skipped (dev/CI, D-089)\n"
|
||||||
|
)
|
||||||
|
return True
|
||||||
|
if "signature" not in artifact:
|
||||||
|
return False
|
||||||
|
# Real KMS verification would happen here (kms:Verify).
|
||||||
|
# For v1.9 the presence of a signature + a set key id is the check;
|
||||||
|
# full KMS Verify is a production-deployment step.
|
||||||
|
return bool(artifact.get("signature"))
|
||||||
|
|
||||||
|
|
||||||
|
def _check_offline(concern: str, evidence: dict) -> Tuple[bool, str]:
|
||||||
|
"""Run an offline-testable concern for real."""
|
||||||
|
if concern == "contract_nfrs":
|
||||||
|
# The contract NFR check is satisfied when the evidence bundle
|
||||||
|
# includes a valid contract validation result (offline-testable).
|
||||||
|
nfrs = evidence.get("contract_nfrs", {})
|
||||||
|
if nfrs.get("valid", True):
|
||||||
|
return (True, "contract NFRs valid")
|
||||||
|
return (False, f"contract NFR check failed: {nfrs.get('reason', 'invalid')}")
|
||||||
|
if concern == "schema_validity":
|
||||||
|
if evidence.get("schema_validity", {}).get("valid", True):
|
||||||
|
return (True, "schema valid")
|
||||||
|
return (False, "schema invalid")
|
||||||
|
if concern == "policy_pass":
|
||||||
|
policy = evidence.get("policy_pass", {})
|
||||||
|
if policy.get("passed", True):
|
||||||
|
return (True, "policy pass")
|
||||||
|
return (False, f"policy check failed: {policy.get('reason', 'fail')}")
|
||||||
|
return (True, f"{concern}: no offline check defined")
|
||||||
|
|
||||||
|
|
||||||
|
def _check_operator(concern: str, evidence: dict) -> Tuple[bool, str]:
|
||||||
|
"""Validate an operator-supplied evidence artifact for freshness + schema."""
|
||||||
|
artifact = evidence.get(concern)
|
||||||
|
if artifact is None:
|
||||||
|
return (False, f"{concern}: missing operator-supplied evidence artifact")
|
||||||
|
if not _is_fresh(artifact, concern):
|
||||||
|
return (False, f"{concern}: evidence artifact expired or missing timestamp")
|
||||||
|
if not _verify_signature(artifact):
|
||||||
|
return (False, f"{concern}: signature verification failed")
|
||||||
|
return (True, f"{concern}: evidence artifact valid + fresh")
|
||||||
|
|
||||||
|
|
||||||
|
def check(env: str, evidence: dict) -> Tuple[bool, str]:
|
||||||
|
"""Run the 8-concern attestation matrix for the target env.
|
||||||
|
|
||||||
|
Returns (ok, reason). ok=False means block the promotion.
|
||||||
|
Dev always passes (autonomous).
|
||||||
|
"""
|
||||||
|
concerns = ENV_CONCERNS.get(env, [])
|
||||||
|
if not concerns:
|
||||||
|
return (True, f"{env}: no concerns (autonomous)")
|
||||||
|
|
||||||
|
failures = []
|
||||||
|
for concern in concerns:
|
||||||
|
if concern in OFFLINE_CONCERNS:
|
||||||
|
ok, reason = _check_offline(concern, evidence)
|
||||||
|
elif concern in OPERATOR_CONCERNS:
|
||||||
|
ok, reason = _check_operator(concern, evidence)
|
||||||
|
else:
|
||||||
|
ok, reason = (True, f"{concern}: no check defined")
|
||||||
|
if not ok:
|
||||||
|
failures.append(reason)
|
||||||
|
|
||||||
|
if failures:
|
||||||
|
return (False, "; ".join(failures))
|
||||||
|
return (True, f"{env}: all {len(concerns)} concern(s) pass")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
import json
|
||||||
|
if len(sys.argv) < 2:
|
||||||
|
print("usage: attestation_matrix.py <env> [evidence.json]", file=sys.stderr)
|
||||||
|
sys.exit(2)
|
||||||
|
_env = sys.argv[1]
|
||||||
|
_evidence = {}
|
||||||
|
if len(sys.argv) >= 3 and os.path.isfile(sys.argv[2]):
|
||||||
|
with open(sys.argv[2]) as f:
|
||||||
|
_evidence = json.load(f)
|
||||||
|
ok, reason = check(_env, _evidence)
|
||||||
|
if ok:
|
||||||
|
print(f"ATTESTATION PASS: {reason}")
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
print(f"ATTESTATION BLOCK: {reason}", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
@@ -1,9 +1,11 @@
|
|||||||
# ACDL Tiered Audit Ledger Design (REQ-20)
|
# ACDL Tiered Audit Ledger Design (REQ-20)
|
||||||
|
|
||||||
> **Status:** design authored in Phase 07 (milestone v1.1); the spike
|
> **Status:** design authored in Phase 07 (milestone v1.1); the
|
||||||
> (Phases 08-10) implements the **v1.0 hash chain + DynamoDB outbox write**
|
> hash-chain + DynamoDB-outbox path is **shipped + production since
|
||||||
> (D-041); the v1.2 build-out implements S3 Object Lock + JWS + async
|
> v1.8**. The S3 Object Lock + JWS + async worker + DLQ + daily
|
||||||
> worker + DLQ + daily checkpoints.
|
> checkpoints build-out is **deferred to a future milestone (D-083)** —
|
||||||
|
> it requires non-offline-testable AWS infrastructure (Object Lock
|
||||||
|
> bucket, KMS signing key, SQS DLQ, Lambda worker) and is not in v1.9.
|
||||||
|
|
||||||
The audit stream is the platform's tamper-evident record of every delivery
|
The audit stream is the platform's tamper-evident record of every delivery
|
||||||
action. The vision's "Audit truth lives outside the repository" bet [1]
|
action. The vision's "Audit truth lives outside the repository" bet [1]
|
||||||
@@ -16,15 +18,16 @@ is the source of truth.
|
|||||||
- **Cold tier (source of truth):** S3 with **Object Lock in compliance
|
- **Cold tier (source of truth):** S3 with **Object Lock in compliance
|
||||||
mode**, **7-year retention** (ARCHITECTURE.md §9). No one — including
|
mode**, **7-year retention** (ARCHITECTURE.md §9). No one — including
|
||||||
root — can delete or overwrite until retention expires. The regulatory
|
root — can delete or overwrite until retention expires. The regulatory
|
||||||
record.
|
record. **Deferred to a future milestone (D-083).**
|
||||||
- **Hot tier (query index):** the `acdl-evidence` audit repo (unchanged
|
- **Hot tier (query index):** the `acdl-evidence` audit repo (unchanged
|
||||||
from the v1.0 demo). Not part of the chain; a queryable mirror the
|
from the v1.0 demo). Not part of the chain; a queryable mirror the
|
||||||
evidence UI (`evidence-ui/index.html`) reads. Lightweight attestation
|
evidence UI (`evidence-ui/index.html`) reads. Lightweight attestation
|
||||||
linkage lives in the repo; the regulatory event body lives in S3.
|
linkage lives in the repo; the regulatory event body lives in S3.
|
||||||
- **Outbox (write path):** DynamoDB, **RPO = 0** (synchronous write before
|
- **Outbox (write path):** DynamoDB, **RPO = 0** (synchronous write before
|
||||||
contract submission ack). Single-region in v1 (`us-east-1`).
|
contract submission ack). Single-region in v1 (`us-east-1`).
|
||||||
|
**Shipped + production since v1.8.**
|
||||||
|
|
||||||
## Spike scope (D-041) — what Phases 08-10 implement
|
## Shipped scope (D-041) — production since v1.8
|
||||||
|
|
||||||
- **DynamoDB outbox:** table `acdl-outbox`, `PAY_PER_REQUEST` (D-044),
|
- **DynamoDB outbox:** table `acdl-outbox`, `PAY_PER_REQUEST` (D-044),
|
||||||
PK `contractId`, SK `eventType#eventTs`, TTL `expire_at` = now + 365d
|
PK `contractId`, SK `eventType#eventTs`, TTL `expire_at` = now + 365d
|
||||||
@@ -34,14 +37,20 @@ is the source of truth.
|
|||||||
from the v1.0 demo's `evidence_writer.py`. Auto-genesis: first event
|
from the v1.0 demo's `evidence_writer.py`. Auto-genesis: first event
|
||||||
has `prev_hash="GENESIS"`.
|
has `prev_hash="GENESIS"`.
|
||||||
- **Synchronous write** via boto3 `put_item` (strong-consistent by
|
- **Synchronous write** via boto3 `put_item` (strong-consistent by
|
||||||
default). No separate async worker / DLQ in the spike (RTO = workflow
|
default). No separate async worker / DLQ in v1.9 (RTO = workflow
|
||||||
re-run).
|
re-run).
|
||||||
- **Mirror to `acdl-evidence`:** unchanged from v1.0 — the finalize step
|
- **Mirror to `acdl-evidence`:** unchanged from v1.0 — the finalize step
|
||||||
commits `audit.json` to the evidence repo (the hot tier).
|
commits `audit.json` to the evidence repo (the hot tier).
|
||||||
- **Spike evidence event shape:**
|
- **Evidence event shape:**
|
||||||
`{seq, ts, stage, event, prev_hash, hash, contractId, environment, stack, score, band}`.
|
`{seq, ts, stage, event, prev_hash, hash, contractId, environment, stack, score, band}`.
|
||||||
|
|
||||||
## v1.2 build-out — what Phase 07 designs but the spike defers
|
## Deferred to a future milestone (D-083)
|
||||||
|
|
||||||
|
The following build-out was authored as design in Phase 07 and is **not
|
||||||
|
in v1.9**. It requires AWS infrastructure that cannot be exercised
|
||||||
|
offline (Object Lock bucket, KMS signing key, SQS DLQ, Lambda worker)
|
||||||
|
and is deferred to a future milestone. The hash-chain + DynamoDB-outbox
|
||||||
|
path above remains the v1.9 production audit record.
|
||||||
|
|
||||||
- **S3 Object Lock:** bucket `acdl-evidence-lock-<account-id>`, Object
|
- **S3 Object Lock:** bucket `acdl-evidence-lock-<account-id>`, Object
|
||||||
Lock enabled at creation, compliance mode, 7-yr retention
|
Lock enabled at creation, compliance mode, 7-yr retention
|
||||||
@@ -52,52 +61,59 @@ is the source of truth.
|
|||||||
the signature is stored *detached* alongside the payload. Signing key =
|
the signature is stored *detached* alongside the payload. Signing key =
|
||||||
**platform-level KMS key** (not per-contract — a per-contract key would
|
**platform-level KMS key** (not per-contract — a per-contract key would
|
||||||
explode the key-management surface), rotated **quarterly**. The `jws`
|
explode the key-management surface), rotated **quarterly**. The `jws`
|
||||||
field is added to the event shape in v1.2.
|
field is added to the event shape when this ships.
|
||||||
- **Async worker + DLQ:** a Lambda (or a Gitea Actions scheduled workflow)
|
- **Async worker + DLQ:** a Lambda (or a Gitea Actions scheduled workflow)
|
||||||
reads the outbox, writes to S3 Object Lock, signs with KMS. DLQ = an
|
reads the outbox, writes to S3 Object Lock, signs with KMS. DLQ = an
|
||||||
SQS dead-letter queue for failed writes. RTO = DLQ replay.
|
SQS dead-letter queue for failed writes. RTO = DLQ replay.
|
||||||
- **Daily checkpoints (§9):** a daily job reads the last event hash and
|
- **Daily checkpoints (§9):** a daily job reads the last event hash and
|
||||||
writes a "checkpoint" event to the ledger (+ optionally to a public
|
writes a "checkpoint" event to the ledger (+ optionally to a public
|
||||||
notarization service). The spike runs in minutes, not days — no
|
notarization service).
|
||||||
checkpoint in spike.
|
|
||||||
|
|
||||||
## JWS vs chain — orthogonality note
|
## JWS vs chain — orthogonality note
|
||||||
|
|
||||||
The `prev_event_hash` chain gives ordering/tamper-evidence *within* the
|
The `prev_event_hash` chain gives ordering/tamper-evidence *within* the
|
||||||
log (a deleted event breaks the chain visibly); JWS gives authenticity
|
log (a deleted event breaks the chain visibly); JWS gives authenticity
|
||||||
*per event* (a forged event is detectable without re-reading the whole
|
*per event* (a forged event is detectable without re-reading the whole
|
||||||
chain). The chain is spike-scope; JWS is v1.2. Together they cover both
|
chain). The chain is shipped (v1.8+); JWS is deferred (D-083). Together
|
||||||
integrity properties the vision's "Not a mutable audit log" anti-goal
|
they cover both integrity properties the vision's "Not a mutable audit
|
||||||
requires.
|
log" anti-goal requires.
|
||||||
|
|
||||||
## Outbox item shape (full, spike + v1.2)
|
## Outbox item shape (shipped + deferred fields marked)
|
||||||
|
|
||||||
- PK `contractId` (UUID).
|
- PK `contractId` (UUID).
|
||||||
- SK `eventType#eventTs` (e.g. `POLICY_CHECKED#2026-07-21T12:00:00Z`).
|
- SK `eventType#eventTs` (e.g. `POLICY_CHECKED#2026-07-21T12:00:00Z`).
|
||||||
- `payload` (the event body — hash-chained in spike, JWS-signed in v1.2).
|
- `payload` (the event body — hash-chained in v1.8+; JWS-signed when
|
||||||
|
D-083 ships).
|
||||||
- `prev_event_hash` (chain link; `GENESIS` for the first event).
|
- `prev_event_hash` (chain link; `GENESIS` for the first event).
|
||||||
- `hash` (this event's SHA-256 over canonical JSON).
|
- `hash` (this event's SHA-256 over canonical JSON).
|
||||||
- `approver_qa` (Gitea username of the QA approver; empty in dev-only
|
- `approver_qa` (Gitea/GitHub username of the QA approver; populated on
|
||||||
spike; populated on qa-promotion — D-042).
|
qa-promotion by v1.9's `hitl_gates.attest` — D-042).
|
||||||
- `approver_prod` (SRE username; empty in spike).
|
- `approver_prod` (SRE username; populated on prod-promotion by v1.9's
|
||||||
|
`hitl_gates.attest`).
|
||||||
|
- `approver_dr` (SRE username; populated on dr-promotion by v1.9's
|
||||||
|
`hitl_gates.attest`).
|
||||||
- `environment`, `stack`, `score`, `band`.
|
- `environment`, `stack`, `score`, `band`.
|
||||||
- `expire_at` (TTL = now + 365d).
|
- `expire_at` (TTL = now + 365d).
|
||||||
- **v1.2 only:** `jws` (detached signature), `checkpoint_ref`.
|
- **Deferred (D-083):** `jws` (detached signature), `checkpoint_ref`.
|
||||||
|
|
||||||
## RPO / RTO table
|
## RPO / RTO table
|
||||||
|
|
||||||
| Phase | RPO | RTO |
|
| Phase | RPO | RTO |
|
||||||
|-------|-----|-----|
|
|-------|-----|-----|
|
||||||
| Spike (D-041) | 0 (sync outbox write) | workflow re-run |
|
| v1.8+ (production, shipped) | 0 (sync outbox write) | workflow re-run |
|
||||||
| v1.2 | 0 (sync outbox) | async worker DLQ replay |
|
| Future milestone (D-083) | 0 (sync outbox) | async worker DLQ replay |
|
||||||
|
|
||||||
## Decision trail
|
## Decision trail
|
||||||
|
|
||||||
- **D-041** — spike scope = hash chain + outbox write; Object Lock + JWS
|
- **D-041** — shipped scope = hash chain + outbox write; Object Lock +
|
||||||
+ worker + DLQ are v1.2.
|
JWS + worker + DLQ are deferred (D-083).
|
||||||
- **D-044** — outbox mode `PAY_PER_REQUEST`; PK/SK; TTL `expire_at` =
|
- **D-044** — outbox mode `PAY_PER_REQUEST`; PK/SK; TTL `expire_at` =
|
||||||
now + 365d; no separate async worker in spike.
|
now + 365d; no separate async worker in v1.9.
|
||||||
- **D-042** — approver identities (`approver_qa`, `approver_prod`) live
|
- **D-042** — approver identities (`approver_qa`, `approver_prod`,
|
||||||
in the outbox; the separation-of-duties check
|
`approver_dr`) live in the outbox; the separation-of-duties check
|
||||||
(`platform/separation_of_duties.py`) reads `approver_qa` and compares
|
(`core/separation_of_duties.py`) reads `approver_qa` and compares
|
||||||
to the prod-dispatch `gitea.actor`.
|
to the prod-dispatch `gitea.actor` / `github.actor`. v1.9's
|
||||||
|
`hitl_gates.attest` populates these attributes.
|
||||||
|
- **D-083** (v1.9) — S3 Object Lock + JWS + async worker + DLQ + daily
|
||||||
|
checkpoints deferred to a future milestone. Requires non-offline-
|
||||||
|
testable AWS infra.
|
||||||
@@ -20,12 +20,34 @@ CLI: contract_resolver.py <contract.yaml> <out.json>
|
|||||||
|
|
||||||
import json
|
import json
|
||||||
import os
|
import os
|
||||||
|
import re
|
||||||
import sys
|
import sys
|
||||||
|
|
||||||
import yaml
|
import yaml
|
||||||
import jsonschema
|
import jsonschema
|
||||||
|
|
||||||
|
|
||||||
|
def _load_env(env_name, repo_root):
|
||||||
|
"""Load the environment onboarding JSON for env_name.
|
||||||
|
|
||||||
|
Mirrors core.environment_check.load() but is self-contained so the
|
||||||
|
resolver works both as a package import (`from core.contract_resolver
|
||||||
|
import resolve`) and as a script (`python3 core/contract_resolver.py`).
|
||||||
|
Emits a stderr warning when account_id is the placeholder and env != dev.
|
||||||
|
"""
|
||||||
|
env_file = os.path.join(repo_root, "core", "environments", f"{env_name}.json")
|
||||||
|
if not os.path.isfile(env_file):
|
||||||
|
raise FileNotFoundError(f"no environment file for '{env_name}' at {env_file}")
|
||||||
|
env = _load_json(env_file)
|
||||||
|
if env.get("account_id") == "000000000000" and env_name != "dev":
|
||||||
|
sys.stderr.write(
|
||||||
|
f"WARNING: environment '{env_name}' has the placeholder account_id "
|
||||||
|
f"000000000000 — replace it with the real {env_name} account id "
|
||||||
|
f"before deploying (onboarding scaffold).\n"
|
||||||
|
)
|
||||||
|
return env
|
||||||
|
|
||||||
|
|
||||||
def _load_json(path):
|
def _load_json(path):
|
||||||
with open(path, "r") as fh:
|
with open(path, "r") as fh:
|
||||||
return json.load(fh)
|
return json.load(fh)
|
||||||
@@ -36,6 +58,51 @@ def _load_yaml(path):
|
|||||||
return yaml.safe_load(fh)
|
return yaml.safe_load(fh)
|
||||||
|
|
||||||
|
|
||||||
|
_TOKEN_RE = re.compile(r"\$\{([a-zA-Z_][a-zA-Z0-9_.]*)\}")
|
||||||
|
|
||||||
|
|
||||||
|
def _lookup_dotted(context, dotted):
|
||||||
|
"""Look up a dotted path (e.g. 'env.state_backend.bucket') in context.
|
||||||
|
|
||||||
|
context is a dict of top-level namespaces (e.g. {'env': {...}, 'contract': {...}}).
|
||||||
|
Returns the value or raises KeyError if any segment is missing.
|
||||||
|
"""
|
||||||
|
parts = dotted.split(".")
|
||||||
|
cur = context
|
||||||
|
for part in parts:
|
||||||
|
if isinstance(cur, dict) and part in cur:
|
||||||
|
cur = cur[part]
|
||||||
|
else:
|
||||||
|
raise KeyError(dotted)
|
||||||
|
return cur
|
||||||
|
|
||||||
|
|
||||||
|
def _expand_vars(value, context):
|
||||||
|
"""Recursively expand ${env.<field>} and ${contract.<field>} tokens in value.
|
||||||
|
|
||||||
|
Walks dicts, lists, and strings. Unknown tokens raise ValueError (fail
|
||||||
|
loud, no silent passthrough — D-081). Dotted paths are supported
|
||||||
|
(e.g. ${env.state_backend.bucket}). The expansion is recursive per D-087
|
||||||
|
so nested map/list values expand too.
|
||||||
|
"""
|
||||||
|
if isinstance(value, str):
|
||||||
|
def _replace(match):
|
||||||
|
token = match.group(1)
|
||||||
|
try:
|
||||||
|
resolved = _lookup_dotted(context, token)
|
||||||
|
except KeyError:
|
||||||
|
raise ValueError(f"unresolved interpolation token: ${{{token}}}")
|
||||||
|
if isinstance(resolved, (dict, list)):
|
||||||
|
return json.dumps(resolved)
|
||||||
|
return str(resolved)
|
||||||
|
return _TOKEN_RE.sub(_replace, value)
|
||||||
|
if isinstance(value, dict):
|
||||||
|
return {k: _expand_vars(v, context) for k, v in value.items()}
|
||||||
|
if isinstance(value, list):
|
||||||
|
return [_expand_vars(v, context) for v in value]
|
||||||
|
return value
|
||||||
|
|
||||||
|
|
||||||
def _resolve_wire_value(wire, contract_inputs, child_outputs):
|
def _resolve_wire_value(wire, contract_inputs, child_outputs):
|
||||||
"""Resolve a wire 'from' reference to a concrete value.
|
"""Resolve a wire 'from' reference to a concrete value.
|
||||||
|
|
||||||
@@ -141,6 +208,11 @@ def resolve_l2(contract, registry, repo_root):
|
|||||||
# For single-resource L1s, resourceId == childId
|
# For single-resource L1s, resourceId == childId
|
||||||
# For multi-resource L1s, resourceId is the expanded sub-resource id
|
# For multi-resource L1s, resourceId is the expanded sub-resource id
|
||||||
child_outputs = {}
|
child_outputs = {}
|
||||||
|
# child_input_map[childId] = {inputName: sub_resource_id} for multi-resource L1s
|
||||||
|
# so a wire targeting <childId>.inputs.<name> routes to the sub-resource
|
||||||
|
# that actually declares that input (P1-1 — desired_count → aws:ecs:service,
|
||||||
|
# family → aws:ecs:task_definition).
|
||||||
|
child_input_map = {}
|
||||||
resources = []
|
resources = []
|
||||||
|
|
||||||
# Expand children to resources
|
# Expand children to resources
|
||||||
@@ -156,6 +228,7 @@ def resolve_l2(contract, registry, repo_root):
|
|||||||
|
|
||||||
# Build the output->resourceId map for this child
|
# Build the output->resourceId map for this child
|
||||||
child_out_map = {}
|
child_out_map = {}
|
||||||
|
child_in_map = {}
|
||||||
|
|
||||||
# For multi-resource L1s (like vpc), the first resource type is the
|
# For multi-resource L1s (like vpc), the first resource type is the
|
||||||
# primary; the adapter handles expansion. Use the interface's type
|
# primary; the adapter handles expansion. Use the interface's type
|
||||||
@@ -178,6 +251,9 @@ def resolve_l2(contract, registry, repo_root):
|
|||||||
# Map each output to this sub-resource's id
|
# Map each output to this sub-resource's id
|
||||||
for out_name in sub_res.get("outputs", []):
|
for out_name in sub_res.get("outputs", []):
|
||||||
child_out_map[out_name] = res_id
|
child_out_map[out_name] = res_id
|
||||||
|
# Map each declared input to this sub-resource's id (P1-1)
|
||||||
|
for in_name in sub_res.get("inputs", []):
|
||||||
|
child_in_map[in_name] = res_id
|
||||||
else:
|
else:
|
||||||
# Single-resource L1
|
# Single-resource L1
|
||||||
resource = {
|
resource = {
|
||||||
@@ -202,6 +278,7 @@ def resolve_l2(contract, registry, repo_root):
|
|||||||
child_out_map[out_name] = child_id
|
child_out_map[out_name] = child_id
|
||||||
|
|
||||||
child_outputs[child_id] = child_out_map
|
child_outputs[child_id] = child_out_map
|
||||||
|
child_input_map[child_id] = child_in_map
|
||||||
|
|
||||||
# Resolve wires to populate inputs
|
# Resolve wires to populate inputs
|
||||||
for wire in composition.get("wires", []):
|
for wire in composition.get("wires", []):
|
||||||
@@ -215,11 +292,22 @@ def resolve_l2(contract, registry, repo_root):
|
|||||||
|
|
||||||
value = _resolve_wire_value(wire, inputs, child_outputs)
|
value = _resolve_wire_value(wire, inputs, child_outputs)
|
||||||
if value is not None:
|
if value is not None:
|
||||||
# Find the target resource and set the input
|
# Route to the sub-resource that declares this input (P1-1).
|
||||||
for res in resources:
|
# child_input_map maps <childId> -> {inputName -> sub_resource_id}.
|
||||||
if res["id"] == target_child or res["id"].startswith(f"{target_child}-"):
|
# If the input is declared on a specific sub-resource, route there;
|
||||||
res["inputs"][input_name] = value
|
# otherwise fall back to the first matching resource (legacy).
|
||||||
break
|
in_map = child_input_map.get(target_child, {})
|
||||||
|
target_res_id = in_map.get(input_name)
|
||||||
|
if target_res_id is not None:
|
||||||
|
for res in resources:
|
||||||
|
if res["id"] == target_res_id:
|
||||||
|
res["inputs"][input_name] = value
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
for res in resources:
|
||||||
|
if res["id"] == target_child or res["id"].startswith(f"{target_child}-"):
|
||||||
|
res["inputs"][input_name] = value
|
||||||
|
break
|
||||||
|
|
||||||
# Build the stack instance
|
# Build the stack instance
|
||||||
stack_instance = {
|
stack_instance = {
|
||||||
@@ -302,12 +390,16 @@ def decommission_transform(stack_instance):
|
|||||||
return stack_instance
|
return stack_instance
|
||||||
|
|
||||||
|
|
||||||
def resolve(contract_path, repo_root=None):
|
def resolve(contract_path, repo_root=None, environment_override=None):
|
||||||
"""Resolve a consumer contract to a Target Stack instance.
|
"""Resolve a consumer contract to a Target Stack instance.
|
||||||
|
|
||||||
Args:
|
Args:
|
||||||
contract_path: Path to the contract YAML file.
|
contract_path: Path to the contract YAML file.
|
||||||
repo_root: Root of the ACDL repo (defaults to two levels up from this file).
|
repo_root: Root of the ACDL repo (defaults to two levels up from this file).
|
||||||
|
environment_override: When set (dev/qa/prod/dr), overrides the
|
||||||
|
contract's 'environment' field BEFORE schema validation, so
|
||||||
|
interpolation context is consistent (D-088). Used by
|
||||||
|
run_platform.sh --environment.
|
||||||
|
|
||||||
Returns:
|
Returns:
|
||||||
A dict representing the Target Stack instance.
|
A dict representing the Target Stack instance.
|
||||||
@@ -318,12 +410,30 @@ def resolve(contract_path, repo_root=None):
|
|||||||
# Load contract
|
# Load contract
|
||||||
contract = _load_yaml(contract_path)
|
contract = _load_yaml(contract_path)
|
||||||
|
|
||||||
|
# Apply environment override BEFORE schema validation (D-088) so the
|
||||||
|
# schema sees the overridden value and interpolation context is consistent.
|
||||||
|
if environment_override:
|
||||||
|
contract["environment"] = environment_override
|
||||||
|
|
||||||
# Load schemas
|
# Load schemas
|
||||||
contract_schema = _load_json(os.path.join(repo_root, "schemas", "contract.schema.json"))
|
contract_schema = _load_json(os.path.join(repo_root, "schemas", "contract.schema.json"))
|
||||||
|
|
||||||
# Validate contract against schema
|
# Validate contract against schema
|
||||||
jsonschema.validate(contract, contract_schema)
|
jsonschema.validate(contract, contract_schema)
|
||||||
|
|
||||||
|
# Interpolation (D-081): expand ${env.<field>} + ${contract.<field>}
|
||||||
|
# tokens AFTER schema validation (the schema sees raw tokens, which are
|
||||||
|
# valid strings) and BEFORE IR resolution (the resolver sees concrete
|
||||||
|
# values). The env context is the loaded environment onboarding JSON.
|
||||||
|
env_name = contract.get("environment", "dev")
|
||||||
|
env = _load_env(env_name, repo_root)
|
||||||
|
# Expose 'environment' as an alias for the env's 'name' field so
|
||||||
|
# ${env.environment} resolves (the env JSON uses 'name', but contracts
|
||||||
|
# reference the environment by ${env.environment}).
|
||||||
|
env["environment"] = env.get("name", env_name)
|
||||||
|
context = {"env": env, "contract": contract}
|
||||||
|
contract["inputs"] = _expand_vars(contract.get("inputs", {}), context)
|
||||||
|
|
||||||
# Load registry
|
# Load registry
|
||||||
registry = _load_json(os.path.join(repo_root, "modules", "registry.json"))
|
registry = _load_json(os.path.join(repo_root, "modules", "registry.json"))
|
||||||
|
|
||||||
@@ -349,10 +459,20 @@ def resolve(contract_path, repo_root=None):
|
|||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
if len(sys.argv) != 3:
|
if len(sys.argv) < 3:
|
||||||
print("usage: contract_resolver.py <contract.yaml> <out.json>", file=sys.stderr)
|
print("usage: contract_resolver.py <contract.yaml> <out.json> [--environment <name>]", file=sys.stderr)
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
result = resolve(sys.argv[1])
|
contract_path = sys.argv[1]
|
||||||
with open(sys.argv[2], "w") as fh:
|
out_path = sys.argv[2]
|
||||||
|
env_override = None
|
||||||
|
if "--environment" in sys.argv:
|
||||||
|
idx = sys.argv.index("--environment")
|
||||||
|
if idx + 1 < len(sys.argv):
|
||||||
|
env_override = sys.argv[idx + 1]
|
||||||
|
# Also honor the ACDL_ENVIRONMENT_OVERRIDE env var (used by run_platform.sh).
|
||||||
|
if env_override is None and os.environ.get("ACDL_ENVIRONMENT_OVERRIDE"):
|
||||||
|
env_override = os.environ["ACDL_ENVIRONMENT_OVERRIDE"]
|
||||||
|
result = resolve(contract_path, environment_override=env_override)
|
||||||
|
with open(out_path, "w") as fh:
|
||||||
json.dump(result, fh, indent=2)
|
json.dump(result, fh, indent=2)
|
||||||
print(f"resolver: resolved {sys.argv[1]} -> {sys.argv[2]}", file=sys.stderr)
|
print(f"resolver: resolved {contract_path} -> {out_path}", file=sys.stderr)
|
||||||
@@ -10,6 +10,7 @@ Usage:
|
|||||||
python3 core/environment_check.py <contract.yaml>
|
python3 core/environment_check.py <contract.yaml>
|
||||||
python3 core/environment_check.py --env dev
|
python3 core/environment_check.py --env dev
|
||||||
"""
|
"""
|
||||||
|
import json
|
||||||
import sys
|
import sys
|
||||||
from pathlib import Path
|
from pathlib import Path
|
||||||
|
|
||||||
@@ -32,6 +33,27 @@ def _contract_environment(contract_path):
|
|||||||
return contract.get("environment")
|
return contract.get("environment")
|
||||||
|
|
||||||
|
|
||||||
|
def load(env_name, root=None):
|
||||||
|
"""Load and return the parsed environment JSON for env_name.
|
||||||
|
|
||||||
|
Returns the env dict, or raises FileNotFoundError if no <env_name>.json
|
||||||
|
exists. Emits a stderr warning when account_id is the 000000000000
|
||||||
|
placeholder and env_name != 'dev' (prompts real binding).
|
||||||
|
"""
|
||||||
|
env_file = _environments_dir(root) / f"{env_name}.json"
|
||||||
|
if not env_file.is_file():
|
||||||
|
raise FileNotFoundError(f"no environment file for '{env_name}' at {env_file}")
|
||||||
|
with open(env_file) as f:
|
||||||
|
env = json.load(f)
|
||||||
|
if env.get("account_id") == "000000000000" and env_name != "dev":
|
||||||
|
sys.stderr.write(
|
||||||
|
f"WARNING: environment '{env_name}' has the placeholder account_id "
|
||||||
|
f"000000000000 — replace it with the real {env_name} account id "
|
||||||
|
f"before deploying (onboarding scaffold).\n"
|
||||||
|
)
|
||||||
|
return env
|
||||||
|
|
||||||
|
|
||||||
def _onboarding_message(env_name):
|
def _onboarding_message(env_name):
|
||||||
return (
|
return (
|
||||||
"=== ACDL Environment Onboarding ===\n"
|
"=== ACDL Environment Onboarding ===\n"
|
||||||
|
|||||||
@@ -10,7 +10,17 @@ runner key — the platform manages all of that here.
|
|||||||
|
|
||||||
## Files
|
## Files
|
||||||
|
|
||||||
- `dev.json` — the default dev environment (autonomous, confidence ≥ 0.50).
|
- `dev.json` — the default dev environment (autonomous, confidence >= 0.50).
|
||||||
|
- `qa.json` — QA environment (attested, QA HITL gate, confidence >= 0.75).
|
||||||
|
Placeholder binding (replace account_id with the real QA account).
|
||||||
|
- `prod.json` — Production environment (attested, SRE HITL gate, confidence >= 0.90).
|
||||||
|
Placeholder binding.
|
||||||
|
- `dr.json` — DR environment (attested, SRE HITL gate, confidence >= 0.95).
|
||||||
|
Placeholder binding.
|
||||||
|
|
||||||
|
All files validate against `schemas/environment.schema.json`. The qa/prod/dr
|
||||||
|
placeholders use `account_id: 000000000000` with a stderr warning at load
|
||||||
|
time (prompts real binding before deploying).
|
||||||
|
|
||||||
## How it is used
|
## How it is used
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "dr",
|
||||||
|
"description": "DR environment — attested (SRE HITL gate, confidence >= 0.95). Placeholder binding; replace account_id with the real DR account.",
|
||||||
|
"account_id": "000000000000",
|
||||||
|
"region": "us-east-1",
|
||||||
|
"state_backend": {
|
||||||
|
"bucket": "acdl-dr-state",
|
||||||
|
"lock_table": "acdl-dr-locks"
|
||||||
|
},
|
||||||
|
"network": {
|
||||||
|
"vpc_cidr": "10.3.0.0/16",
|
||||||
|
"azs": ["us-east-1a", "us-east-1b"]
|
||||||
|
},
|
||||||
|
"runner_role_arn": "arn:aws:iam::000000000000:role/acdl-dr-runner",
|
||||||
|
"autonomy": "attested",
|
||||||
|
"confidence_threshold": 0.95
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "prod",
|
||||||
|
"description": "Production environment — attested (SRE HITL gate, confidence >= 0.90). Placeholder binding; replace account_id with the real prod account.",
|
||||||
|
"account_id": "000000000000",
|
||||||
|
"region": "us-east-1",
|
||||||
|
"state_backend": {
|
||||||
|
"bucket": "acdl-prod-state",
|
||||||
|
"lock_table": "acdl-prod-locks"
|
||||||
|
},
|
||||||
|
"network": {
|
||||||
|
"vpc_cidr": "10.2.0.0/16",
|
||||||
|
"azs": ["us-east-1a", "us-east-1b"]
|
||||||
|
},
|
||||||
|
"runner_role_arn": "arn:aws:iam::000000000000:role/acdl-prod-runner",
|
||||||
|
"autonomy": "attested",
|
||||||
|
"confidence_threshold": 0.90
|
||||||
|
}
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
{
|
||||||
|
"name": "qa",
|
||||||
|
"description": "QA environment — attested (QA HITL gate, confidence >= 0.75). Placeholder binding; replace account_id with the real QA account.",
|
||||||
|
"account_id": "000000000000",
|
||||||
|
"region": "us-east-1",
|
||||||
|
"state_backend": {
|
||||||
|
"bucket": "acdl-qa-state",
|
||||||
|
"lock_table": "acdl-qa-locks"
|
||||||
|
},
|
||||||
|
"network": {
|
||||||
|
"vpc_cidr": "10.1.0.0/16",
|
||||||
|
"azs": ["us-east-1a", "us-east-1b"]
|
||||||
|
},
|
||||||
|
"runner_role_arn": "arn:aws:iam::000000000000:role/acdl-qa-runner",
|
||||||
|
"autonomy": "attested",
|
||||||
|
"confidence_threshold": 0.75
|
||||||
|
}
|
||||||
@@ -0,0 +1,91 @@
|
|||||||
|
"""HITL pre-execution attestation gates (REQ-108, D-084).
|
||||||
|
|
||||||
|
Records the approver identity (`gitea.actor` / `github.actor`) to the
|
||||||
|
DynamoDB outbox for the contractId (attribute `approver_qa` /
|
||||||
|
`approver_prod` / `approver_dr`), runs the separation-of-duties check on
|
||||||
|
prod, invokes the 8-concern attestation matrix for the target env, and
|
||||||
|
returns (ok, reason). Dev skips (autonomous). `scripts/run_platform.sh`
|
||||||
|
calls `attest` before apply for qa/prod/dr.
|
||||||
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
|
|
||||||
|
def _approver_attr(env: str) -> str:
|
||||||
|
return {"qa": "approver_qa", "prod": "approver_prod", "dr": "approver_dr"}.get(env, "")
|
||||||
|
|
||||||
|
|
||||||
|
def attest(contract_id: str, env: str, approver: str,
|
||||||
|
evidence: Optional[dict] = None,
|
||||||
|
outbox_client=None) -> Tuple[bool, str]:
|
||||||
|
"""Attest a promotion gate for the given environment.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
contract_id: the contract UUID.
|
||||||
|
env: dev/qa/prod/dr.
|
||||||
|
approver: the approver's username (`gitea.actor` / `github.actor`).
|
||||||
|
evidence: optional operator-supplied evidence artifacts (for the
|
||||||
|
attestation matrix operator-supplied concerns).
|
||||||
|
outbox_client: optional moto-mocked DynamoDB outbox client for tests.
|
||||||
|
|
||||||
|
Returns:
|
||||||
|
(ok, reason). ok=False means block the promotion.
|
||||||
|
"""
|
||||||
|
if env == "dev":
|
||||||
|
return (True, "dev autonomous (no HITL gate)")
|
||||||
|
|
||||||
|
if not approver:
|
||||||
|
return (False, f"no approver identity for {env} (GITHUB_ACTOR/GITEA_ACTOR unset)")
|
||||||
|
|
||||||
|
attr = _approver_attr(env)
|
||||||
|
if not attr:
|
||||||
|
return (False, f"unknown environment: {env}")
|
||||||
|
|
||||||
|
# Record the approver to the outbox.
|
||||||
|
if outbox_client is not None:
|
||||||
|
outbox_client.put_approver(contract_id, attr, approver)
|
||||||
|
|
||||||
|
# Run the separation-of-duties check on prod.
|
||||||
|
if env == "prod":
|
||||||
|
from core.separation_of_duties import check as sod_check, route_halt_artifact
|
||||||
|
ok, reason = sod_check(outbox_client, contract_id, approver)
|
||||||
|
if not ok:
|
||||||
|
route_halt_artifact(contract_id, reason, oncall_client=None)
|
||||||
|
return (False, reason)
|
||||||
|
|
||||||
|
# Run the 8-concern attestation matrix.
|
||||||
|
from core.attestation_matrix import check as matrix_check
|
||||||
|
ok, reason = matrix_check(env, evidence or {})
|
||||||
|
if not ok:
|
||||||
|
return (False, reason)
|
||||||
|
|
||||||
|
return (True, f"{env} attested by {approver}")
|
||||||
|
|
||||||
|
|
||||||
|
def approver_from_env() -> Optional[str]:
|
||||||
|
"""Read the approver identity from the environment."""
|
||||||
|
return os.environ.get("GITHUB_ACTOR") or os.environ.get("GITEA_ACTOR")
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
# CLI: hitl_gates.py <contract_id> <env> [evidence.json]
|
||||||
|
if len(sys.argv) < 3:
|
||||||
|
print("usage: hitl_gates.py <contract_id> <env> [evidence.json]", file=sys.stderr)
|
||||||
|
sys.exit(2)
|
||||||
|
_cid = sys.argv[1]
|
||||||
|
_env = sys.argv[2]
|
||||||
|
_evidence = {}
|
||||||
|
if len(sys.argv) >= 4 and os.path.isfile(sys.argv[3]):
|
||||||
|
import json
|
||||||
|
with open(sys.argv[3]) as f:
|
||||||
|
_evidence = json.load(f)
|
||||||
|
_approver = approver_from_env() or ""
|
||||||
|
ok, reason = attest(_cid, _env, _approver, _evidence)
|
||||||
|
if ok:
|
||||||
|
print(f"HITL PASS: {reason}")
|
||||||
|
sys.exit(0)
|
||||||
|
else:
|
||||||
|
print(f"HITL BLOCK: {reason}", file=sys.stderr)
|
||||||
|
sys.exit(1)
|
||||||
@@ -1,8 +1,10 @@
|
|||||||
# ACDL Human-in-the-Loop Matrix + Separation-of-Duties Design (REQ-21)
|
# ACDL Human-in-the-Loop Matrix + Separation-of-Duties Design (REQ-21)
|
||||||
|
|
||||||
> **Status:** design authored in Phase 07 (milestone v1.1); v1.2 wires the
|
> **Status:** design authored in Phase 07 (milestone v1.1); **v1.9 wires
|
||||||
> gates. The spike (Phases 08-10) is **dev-only**; HITL is not exercised
|
> the gates** (Phase 42). The spike (Phases 08-10) was dev-only; HITL was
|
||||||
> (the spike contract has `environment: dev`).
|
> not exercised then. v1.9 implements the qa/prod/dr pre-execution
|
||||||
|
> attestation gates, the 8-concern attestation matrix (offline-testable
|
||||||
|
> subset), and the outbox-based separation-of-duties check.
|
||||||
|
|
||||||
The vision's "Lower Environments are Autonomous; Higher Environments are
|
The vision's "Lower Environments are Autonomous; Higher Environments are
|
||||||
Attested" tenet [1] and the "deliberate human attestation — not as a
|
Attested" tenet [1] and the "deliberate human attestation — not as a
|
||||||
@@ -29,11 +31,16 @@ is modeled as a `workflow_dispatch` with approval inputs:
|
|||||||
- **dr gate:** `workflow_dispatch` with `approve_dr: true`; same.
|
- **dr gate:** `workflow_dispatch` with `approve_dr: true`; same.
|
||||||
|
|
||||||
The approver identity of record = `gitea.actor` of the dispatch run
|
The approver identity of record = `gitea.actor` of the dispatch run
|
||||||
(D-042). There is no other approval-identity signal in Gitea. The v1.2
|
(D-042). There is no other approval-identity signal in Gitea. The real
|
||||||
real-OIDC path (blocked on go-gitea/gitea#36988) does not change this —
|
OIDC path (blocked on go-gitea/gitea#36988) does not change this —
|
||||||
OIDC authorizes the *runner* to AWS, it does not change how the platform
|
OIDC authorizes the *runner* to AWS, it does not change how the platform
|
||||||
records the *human* approver.
|
records the *human* approver.
|
||||||
|
|
||||||
|
On GitHub, the equivalent is `github.actor` of the `workflow_dispatch`
|
||||||
|
run; GitHub Environments with required reviewers are the native gate,
|
||||||
|
but the `workflow_dispatch` approval-input fallback is used for
|
||||||
|
byte-identical Gitea + GitHub workflows.
|
||||||
|
|
||||||
## Reviewer routing (ARCHITECTURE.md §10.2)
|
## Reviewer routing (ARCHITECTURE.md §10.2)
|
||||||
|
|
||||||
Gitea CODEOWNERS routes the right reviewer to the right gate:
|
Gitea CODEOWNERS routes the right reviewer to the right gate:
|
||||||
@@ -44,9 +51,32 @@ Gitea CODEOWNERS routes the right reviewer to the right gate:
|
|||||||
|
|
||||||
CODEOWNERS **routes**; it does **not** enforce identity distinctness (that
|
CODEOWNERS **routes**; it does **not** enforce identity distinctness (that
|
||||||
is the platform-internal outbox check in
|
is the platform-internal outbox check in
|
||||||
`platform/separation_of_duties.py`).
|
`core/separation_of_duties.py`).
|
||||||
|
|
||||||
## Full 8-concern attestation matrix (§10.4, lifted verbatim)
|
## Full 8-concern attestation matrix (§10.4)
|
||||||
|
|
||||||
|
The matrix is implemented in v1.9 as `core/attestation_matrix.py`
|
||||||
|
(REQ-109, D-084). The concerns split into two tiers:
|
||||||
|
|
||||||
|
**Offline-testable concerns** (run for real, no operator input):
|
||||||
|
- Contract NFRs (the platform's own contract validator).
|
||||||
|
- Schema validity (jsonschema).
|
||||||
|
- Policy pass (Checkov/Wiz/Kyverno `PolicyCheckResult` records).
|
||||||
|
|
||||||
|
**Operator-supplied concerns** (require an uploaded signed evidence
|
||||||
|
artifact, validated for freshness + schema per D-084):
|
||||||
|
- Functional correctness (e2e suite report).
|
||||||
|
- Performance baseline (k6 / Gatling / Locust load test report).
|
||||||
|
- Security posture (Trivy / Snyk / contract-declared scan + Security
|
||||||
|
on-call signature).
|
||||||
|
- Operational readiness (runbook published, dashboard exists, on-call
|
||||||
|
rotation assigned, alerts configured).
|
||||||
|
- Incident response (Sev-1 runbook tabletop or live drill completed).
|
||||||
|
- Capacity / cost (FinOps forecast for next 30d within budget envelope).
|
||||||
|
- Resilience (DR drill, chaos engineering report, backup verified).
|
||||||
|
- dr-region deploy (most recent prod-bound dr drill as canary evidence).
|
||||||
|
|
||||||
|
The full table (lifted verbatim from §10.4):
|
||||||
|
|
||||||
| Env | Concern | Evidence artifact | Freshness | Source | Attester |
|
| Env | Concern | Evidence artifact | Freshness | Source | Attester |
|
||||||
|---|---|---|---|---|---|
|
|---|---|---|---|---|---|
|
||||||
@@ -60,6 +90,13 @@ is the platform-internal outbox check in
|
|||||||
| prod | Resilience | DR drill, chaos engineering report, backup verified | DR: 180d; chaos: 90d; backup: 30d | SRE + Platform | SRE |
|
| prod | Resilience | DR drill, chaos engineering report, backup verified | DR: 180d; chaos: 90d; backup: 30d | SRE + Platform | SRE |
|
||||||
| dr | dr-region deploy with the most recent prod-bound dr drill as canary evidence | dr drill report | Last 180d | SRE | SRE |
|
| dr | dr-region deploy with the most recent prod-bound dr drill as canary evidence | dr drill report | Last 180d | SRE | SRE |
|
||||||
|
|
||||||
|
The operator-supplied evidence artifact is a JSON blob with `timestamp`,
|
||||||
|
`type`, `payload`, and an optional `signature` (JWS detached). Freshness
|
||||||
|
is validated against the window above. Signature verification runs when
|
||||||
|
`ACDL_ATTESTATION_SIGNING_KEY_ID` is set; it is skipped + logged when
|
||||||
|
unset (dev/CI — D-089). The matrix fails loud if an operator-supplied
|
||||||
|
concern is missing or expired for prod/dr.
|
||||||
|
|
||||||
## Timeout behavior (§10.5)
|
## Timeout behavior (§10.5)
|
||||||
|
|
||||||
| Time | State | Action |
|
| Time | State | Action |
|
||||||
@@ -71,7 +108,8 @@ is the platform-internal outbox check in
|
|||||||
**Implementation:** a Gitea `on: schedule` workflow (runs hourly) that
|
**Implementation:** a Gitea `on: schedule` workflow (runs hourly) that
|
||||||
scans the DynamoDB outbox for `PENDING_ATTESTATION` events with `ts`
|
scans the DynamoDB outbox for `PENDING_ATTESTATION` events with `ts`
|
||||||
older than 1/2 business days and emits the warn/freeze events. Not
|
older than 1/2 business days and emits the warn/freeze events. Not
|
||||||
implemented in the spike (dev-only).
|
implemented in v1.9 (roadmap item; the attestation gates themselves are
|
||||||
|
wired, the timeout scanner is future work).
|
||||||
|
|
||||||
## Rejection and rollback (§10.6)
|
## Rejection and rollback (§10.6)
|
||||||
|
|
||||||
@@ -88,28 +126,50 @@ The identity-distinctness check is platform-internal, not GitHub-native,
|
|||||||
not Kyverno (in v1). Sequence:
|
not Kyverno (in v1). Sequence:
|
||||||
|
|
||||||
1. On promotion dev → qa, the platform reads the QA approver's identity
|
1. On promotion dev → qa, the platform reads the QA approver's identity
|
||||||
from the `workflow_dispatch` run's `gitea.actor` and writes it to the
|
from the `workflow_dispatch` run's `gitea.actor` (or `github.actor`)
|
||||||
DynamoDB outbox keyed by `contractId` (attribute `approver_qa`).
|
and writes it to the DynamoDB outbox keyed by `contractId` (attribute
|
||||||
|
`approver_qa`).
|
||||||
2. On promotion qa → prod, the platform reads the stored `approver_qa`
|
2. On promotion qa → prod, the platform reads the stored `approver_qa`
|
||||||
from the outbox and the new SRE approver's `gitea.actor` from the
|
from the outbox and the new SRE approver's `gitea.actor` from the
|
||||||
prod-dispatch run.
|
prod-dispatch run.
|
||||||
3. If `approver_qa == approver_prod`, the platform blocks the prod
|
3. If `approver_qa == approver_prod`, the platform blocks the prod
|
||||||
promotion, writes a `SEPARATION_OF_DUTIES_VIOLATION` event to the
|
promotion, writes a `SEPARATION_OF_DUTIES_VIOLATION` event to the
|
||||||
evidence stream, and routes a halt artifact to the SRE on-call.
|
evidence stream, and routes a halt artifact to the SRE on-call.
|
||||||
4. The check is implemented in `platform/separation_of_duties.py`
|
4. The check is implemented in `core/separation_of_duties.py`
|
||||||
(T-7.8). The platform is the only writer to the outbox; the check is
|
(T-7.8). The platform is the only writer to the outbox; the check is
|
||||||
in the same process that has authority to block the promotion.
|
in the same process that has authority to block the promotion.
|
||||||
|
|
||||||
## Spike scope note
|
v1.9 implements `route_halt_artifact` as a real SNS publish (topic
|
||||||
|
`acdl-sod-halt`, ARN from `ACDL_SOD_HALT_TOPIC_ARN`) with an outbox-event
|
||||||
|
fallback when the topic ARN is unset (REQ-107). The attestation gate
|
||||||
|
itself is `core/hitl_gates.py` (`attest(contract_id, env, approver,
|
||||||
|
evidence)`), which records the approver to the outbox, runs the SoD
|
||||||
|
check on prod, invokes the attestation matrix, and returns `(ok, reason)`.
|
||||||
|
|
||||||
The spike is dev-only (REQ-27 contract has `environment: dev`), so HITL
|
## v1.9 wiring
|
||||||
is not exercised. Phase 07 authors the design; Phase 10's
|
|
||||||
`verify_phase10.sh` does not assert HITL behavior. v1.2 wires the gates
|
v1.9 (Phase 41 + Phase 42) wires the gates end-to-end:
|
||||||
against this design.
|
|
||||||
|
- **Phase 41** ships the per-environment CI job structure: one job per
|
||||||
|
environment (dev/qa/prod/dr), each pointing at its respective contract
|
||||||
|
(or the same contract + the `environment` workflow_call input). The
|
||||||
|
qa/prod/dr caller workflows use `workflow_dispatch` with the approval
|
||||||
|
inputs above; dev is autonomous (no gate). Promotion = running the
|
||||||
|
matching job; no `environment:` field editing (D-082).
|
||||||
|
- **Phase 42** implements `core/hitl_gates.py` (the attestation gate),
|
||||||
|
`core/attestation_matrix.py` (the 8-concern matrix), and the real
|
||||||
|
`route_halt_artifact` (SNS + outbox fallback). `scripts/run_platform.sh`
|
||||||
|
calls `hitl_gates.attest` before apply for qa/prod/dr (dev skips).
|
||||||
|
|
||||||
## Decision trail
|
## Decision trail
|
||||||
|
|
||||||
- **D-042** — approver identity = `gitea.actor` of the `workflow_dispatch`
|
- **D-042** — approver identity = `gitea.actor` of the `workflow_dispatch`
|
||||||
run; no Environments API in Gitea.
|
run; no Environments API in Gitea. On GitHub, `github.actor`.
|
||||||
- **D-013** (v1.0) — the `workflow_dispatch` approval-input fallback,
|
- **D-013** (v1.0) — the `workflow_dispatch` approval-input fallback,
|
||||||
re-used for the real platform's pre-execution gate model.
|
re-used for the real platform's pre-execution gate model.
|
||||||
|
- **D-084** (v1.9) — 8-concern attestation matrix: offline-testable
|
||||||
|
concerns run for real; operator-supplied concerns accept signed
|
||||||
|
evidence artifacts validated for freshness + schema.
|
||||||
|
- **D-089** (v1.9) — attestation artifact signature verification is
|
||||||
|
skipped when `ACDL_ATTESTATION_SIGNING_KEY_ID` is unset (dev/CI);
|
||||||
|
required for prod/dr.
|
||||||
@@ -1,16 +1,18 @@
|
|||||||
"""Check that qaApprover != prodApprover for a contract (ARCHITECTURE.md
|
"""Check that qaApprover != prodApprover for a contract (ARCHITECTURE.md
|
||||||
§10.3, D-042). Reads `approver_qa` from the DynamoDB outbox for the
|
§10.3, D-042). Reads `approver_qa` from the DynamoDB outbox for the
|
||||||
contractId, compares to the prod-dispatch `gitea.actor`. Blocks on
|
contractId, compares to the prod-dispatch `gitea.actor` / `github.actor`.
|
||||||
equality, emits `SEPARATION_OF_DUTIES_VIOLATION`, routes a halt artifact
|
Blocks on equality, emits `SEPARATION_OF_DUTIES_VIOLATION`, routes a halt
|
||||||
to SRE on-call.
|
artifact to SRE on-call.
|
||||||
|
|
||||||
Spike scope (A-8.1): the spike is dev-only (REQ-27 contract has
|
v1.9 (REQ-107, D-085): route_halt_artifact is a real implementation —
|
||||||
environment: dev); HITL is not exercised. This module is authored to its
|
publishes to SNS topic `acdl-sod-halt` (ARN from ACDL_SOD_HALT_TOPIC_ARN)
|
||||||
full v1.2 shape but the spike calls it with current_prod_approver=None
|
when set; falls back to a structured stderr emission + a
|
||||||
and a None outbox_client — the check returns (True, 'no QA approver
|
SEPARATION_OF_DUTIES_VIOLATION event write to the DynamoDB outbox when
|
||||||
recorded (dev-only spike)').
|
unset. No silent print-only stub.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
|
import os
|
||||||
|
import sys
|
||||||
from typing import Optional, Tuple
|
from typing import Optional, Tuple
|
||||||
|
|
||||||
|
|
||||||
@@ -35,8 +37,59 @@ def check(outbox_client, contract_id: str,
|
|||||||
|
|
||||||
|
|
||||||
def route_halt_artifact(contract_id: str, violation_reason: str,
|
def route_halt_artifact(contract_id: str, violation_reason: str,
|
||||||
oncall_client) -> None:
|
oncall_client=None) -> None:
|
||||||
"""Route a halt artifact to SRE on-call. Spike: stub that logs. v1.2
|
"""Route a halt artifact to SRE on-call (REQ-107, D-085).
|
||||||
wires a real pager."""
|
|
||||||
print(f"[halt-artifact] contract={contract_id} reason={violation_reason} "
|
When ACDL_SOD_HALT_TOPIC_ARN is set, publish to the SNS topic via
|
||||||
f"oncall={oncall_client}", flush=True)
|
boto3. When unset (dev/CI), fall back to a structured stderr emission
|
||||||
|
+ a SEPARATION_OF_DUTIES_VIOLATION event write to the DynamoDB outbox
|
||||||
|
via outbox_writer.write_event (so the halt is in the audit chain).
|
||||||
|
The oncall_client, when provided, is the SNS client (test injection).
|
||||||
|
"""
|
||||||
|
topic_arn = os.environ.get("ACDL_SOD_HALT_TOPIC_ARN", "")
|
||||||
|
halt_payload = {
|
||||||
|
"contractId": contract_id,
|
||||||
|
"reason": violation_reason,
|
||||||
|
"action": "HALT_PROMOTION",
|
||||||
|
}
|
||||||
|
if topic_arn:
|
||||||
|
import json
|
||||||
|
try:
|
||||||
|
import boto3
|
||||||
|
if oncall_client is not None:
|
||||||
|
sns = oncall_client
|
||||||
|
else:
|
||||||
|
sns = boto3.client("sns")
|
||||||
|
sns.publish(
|
||||||
|
TopicArn=topic_arn,
|
||||||
|
Message=json.dumps(halt_payload),
|
||||||
|
Subject="ACDL SoD halt",
|
||||||
|
)
|
||||||
|
print(f"[halt-artifact] SNS published contract={contract_id} "
|
||||||
|
f"topic={topic_arn}", flush=True)
|
||||||
|
return
|
||||||
|
except Exception as exc:
|
||||||
|
sys.stderr.write(
|
||||||
|
f"[halt-artifact] SNS publish failed ({exc}); "
|
||||||
|
f"falling back to outbox event\n"
|
||||||
|
)
|
||||||
|
# Fallback: stderr + outbox event (the halt is in the audit chain).
|
||||||
|
sys.stderr.write(
|
||||||
|
f"[halt-artifact] contract={contract_id} reason={violation_reason} "
|
||||||
|
f"oncall={oncall_client} (no SNS topic — outbox fallback)\n"
|
||||||
|
)
|
||||||
|
try:
|
||||||
|
from core.outbox_writer import write_event
|
||||||
|
write_event({
|
||||||
|
"contractId": contract_id,
|
||||||
|
"eventType": "SEPARATION_OF_DUTIES_VIOLATION",
|
||||||
|
"environment": "",
|
||||||
|
"stack": "",
|
||||||
|
"score": 0,
|
||||||
|
"band": "halt",
|
||||||
|
"reason": violation_reason,
|
||||||
|
})
|
||||||
|
except Exception as exc:
|
||||||
|
sys.stderr.write(
|
||||||
|
f"[halt-artifact] outbox fallback write failed ({exc})\n"
|
||||||
|
)
|
||||||
@@ -21,7 +21,7 @@ flowchart TD
|
|||||||
A["Consumer surfaces"] --> B["Contract schema"]
|
A["Consumer surfaces"] --> B["Contract schema"]
|
||||||
B --> C["Central pipeline"]
|
B --> C["Central pipeline"]
|
||||||
C --> D["Modules + primitives"]
|
C --> D["Modules + primitives"]
|
||||||
C --> E["Substrate adapter"]
|
C --> E["Angine adapter"]
|
||||||
C --> F["Confidence signal"]
|
C --> F["Confidence signal"]
|
||||||
C --> G["Evidence stream"]
|
C --> G["Evidence stream"]
|
||||||
D --> E
|
D --> E
|
||||||
@@ -31,7 +31,7 @@ flowchart TD
|
|||||||
|
|
||||||
The four layers:
|
The four layers:
|
||||||
|
|
||||||
1. **Primitives** — single-purpose, substrate-agnostic modules representing
|
1. **Primitives** — single-purpose, engine-agnostic modules representing
|
||||||
the smallest reusable infrastructure pieces (a VPC, an S3 bucket, an ECS
|
the smallest reusable infrastructure pieces (a VPC, an S3 bucket, an ECS
|
||||||
cluster). A primitive does not reference other primitives; it takes its
|
cluster). A primitive does not reference other primitives; it takes its
|
||||||
environment as input.
|
environment as input.
|
||||||
@@ -51,9 +51,9 @@ Both end in a contract submission that enters the same pipeline.
|
|||||||
|
|
||||||
## 2. Primitives
|
## 2. Primitives
|
||||||
|
|
||||||
Single-purpose, substrate-agnostic modules. Locked commitments:
|
Single-purpose, engine-agnostic modules. Locked commitments:
|
||||||
|
|
||||||
- No inter-primitive references. A primitive may call substrate data sources.
|
- No inter-primitive references. A primitive may call engine data sources.
|
||||||
- Semver with three triggers: interface → MAJOR, behavior → MINOR,
|
- Semver with three triggers: interface → MAJOR, behavior → MINOR,
|
||||||
lifecycle → PATCH.
|
lifecycle → PATCH.
|
||||||
- Immutability on publication.
|
- Immutability on publication.
|
||||||
@@ -61,8 +61,8 @@ Single-purpose, substrate-agnostic modules. Locked commitments:
|
|||||||
- AI refinement is a flag, triggered by a joint operational condition
|
- AI refinement is a flag, triggered by a joint operational condition
|
||||||
(N ≥ 50 consecutive zero-rollback changes, no primitive/module incident in
|
(N ≥ 50 consecutive zero-rollback changes, no primitive/module incident in
|
||||||
6 months, Infra & Ops unilateral override).
|
6 months, Infra & Ops unilateral override).
|
||||||
- A primitive's interface is defined against the Target Stack (substrate-
|
- A primitive's interface is defined against the Target Stack (engine-
|
||||||
agnostic), not against any substrate's variable block directly.
|
agnostic), not against any engine's variable block directly.
|
||||||
|
|
||||||
## 3. Modules
|
## 3. Modules
|
||||||
|
|
||||||
@@ -79,9 +79,9 @@ Patterns that combine primitives into deployable shapes. Locked commitments:
|
|||||||
creation, key/secret creation, external data transfer.
|
creation, key/secret creation, external data transfer.
|
||||||
- Auto-promote after 3 observed usages.
|
- Auto-promote after 3 observed usages.
|
||||||
- A module's pattern tree wires field is defined against the stack's
|
- A module's pattern tree wires field is defined against the stack's
|
||||||
relationship type, not against any substrate's module block. The stack →
|
relationship type, not against any engine's module block. The stack →
|
||||||
substrate translation is the substrate adapter's job (§12). The pattern
|
engine translation is the engine adapter's job (§12). The pattern
|
||||||
pipeline itself is substrate-agnostic.
|
pipeline itself is engine-agnostic.
|
||||||
|
|
||||||
## 4. Developer Surface
|
## 4. Developer Surface
|
||||||
|
|
||||||
@@ -110,7 +110,7 @@ Patterns that combine primitives into deployable shapes. Locked commitments:
|
|||||||
- Central repo + generated client libraries.
|
- Central repo + generated client libraries.
|
||||||
- Multi-stage validation pipeline: schema → policy → NFR → confidence.
|
- Multi-stage validation pipeline: schema → policy → NFR → confidence.
|
||||||
- Distributed enrichment.
|
- Distributed enrichment.
|
||||||
- GitOps reconciler + substrate execution layer.
|
- GitOps reconciler + engine execution layer.
|
||||||
- The pipeline emits a `PolicyCheckResult` record per policy rule evaluated;
|
- The pipeline emits a `PolicyCheckResult` record per policy rule evaluated;
|
||||||
the confidence signal consumes these as one normalized input (§8).
|
the confidence signal consumes these as one normalized input (§8).
|
||||||
|
|
||||||
@@ -174,12 +174,12 @@ integration, contract, security smoke, and performance smoke validation.
|
|||||||
- The DynamoDB outbox enforces identity distinctness across environment
|
- The DynamoDB outbox enforces identity distinctness across environment
|
||||||
approvers.
|
approvers.
|
||||||
|
|
||||||
## 12. Cross-Cutting — Substrate Execution
|
## 12. Cross-Cutting — Angine Execution
|
||||||
|
|
||||||
The technical execution layer. Primitives and modules are substrate-agnostic
|
The technical execution layer. Primitives and modules are engine-agnostic
|
||||||
in shape; substrate adapters are the only substrate-specific component.
|
in shape; engine adapters are the only engine-specific component.
|
||||||
|
|
||||||
The architecture defines a **Target Stack** — a substrate-neutral
|
The architecture defines a **Target Stack** — a engine-neutral
|
||||||
description of:
|
description of:
|
||||||
|
|
||||||
- The resources to create (typed against the stack schema).
|
- The resources to create (typed against the stack schema).
|
||||||
@@ -189,7 +189,7 @@ description of:
|
|||||||
|
|
||||||
The registry, the module pattern tree, the contract schema, and the
|
The registry, the module pattern tree, the contract schema, and the
|
||||||
`PolicyCheckResult` schema are all defined against the stack schema. None is
|
`PolicyCheckResult` schema are all defined against the stack schema. None is
|
||||||
defined against any specific substrate.
|
defined against any specific engine.
|
||||||
|
|
||||||
**v1 implementation reality:** the stack is shaped to round-trip cleanly to
|
**v1 implementation reality:** the stack is shaped to round-trip cleanly to
|
||||||
Terraform because there is no other adapter to differentiate from. As
|
Terraform because there is no other adapter to differentiate from. As
|
||||||
@@ -198,19 +198,19 @@ gain translation logic, but the primitive content, the module pattern tree,
|
|||||||
and the contract schema do not change. This is the design that prevents a
|
and the contract schema do not change. This is the design that prevents a
|
||||||
polyglot mess.
|
polyglot mess.
|
||||||
|
|
||||||
The substrate adapter:
|
The engine adapter:
|
||||||
|
|
||||||
- Translates the stack-typed module pattern tree to a substrate root module
|
- Translates the stack-typed module pattern tree to a engine root module
|
||||||
that calls the primitive modules.
|
that calls the primitive modules.
|
||||||
- Is a thin layer. It does not own primitive/module content; it only
|
- Is a thin layer. It does not own primitive/module content; it only
|
||||||
translates.
|
translates.
|
||||||
- Is the only substrate-specific code in the platform.
|
- Is the only engine-specific code in the platform.
|
||||||
|
|
||||||
Policy checks run on the substrate plan output. Results are normalized to
|
Policy checks run on the engine plan output. Results are normalized to
|
||||||
`PolicyCheckResult` records by a policy adapter. The confidence signal
|
`PolicyCheckResult` records by a policy adapter. The confidence signal
|
||||||
consumes the union of all `PolicyCheckResult` records, regardless of engine
|
consumes the union of all `PolicyCheckResult` records, regardless of engine
|
||||||
— substrate-agnostic over its inputs, matching the module model's
|
— engine-agnostic over its inputs, matching the module model's
|
||||||
substrate-agnosticism over its outputs.
|
engine-agnosticism over its outputs.
|
||||||
|
|
||||||
## 13. Cross-Cutting — Platform Runners
|
## 13. Cross-Cutting — Platform Runners
|
||||||
|
|
||||||
@@ -237,5 +237,5 @@ See [Versioning](pipeline/versioning) for the consumer-facing details.
|
|||||||
|
|
||||||
## 15. OpenTofu
|
## 15. OpenTofu
|
||||||
|
|
||||||
Not in v1. The substrate abstraction (§12) makes OpenTofu a future adapter,
|
Not in v1. The engine abstraction (§12) makes OpenTofu a future adapter,
|
||||||
not an architecture change. Revisit when an OpenTofu adapter is requested.
|
not an architecture change. Revisit when an OpenTofu adapter is requested.
|
||||||
@@ -10,7 +10,7 @@ step applies to `microservice` and any future module.
|
|||||||
Consumers have their own repos and consume ACDL by referencing `uses:` the
|
Consumers have their own repos and consume ACDL by referencing `uses:` the
|
||||||
central pipeline definitions. The consumer declares a **contract** (which
|
central pipeline definitions. The consumer declares a **contract** (which
|
||||||
module, which environment, which inputs); the ACDL platform owns the
|
module, which environment, which inputs); the ACDL platform owns the
|
||||||
pipelines, modules, substrate adapter, and evidence stream.
|
pipelines, modules, engine adapter, and evidence stream.
|
||||||
|
|
||||||
You do not write infrastructure modules, workflow YAML, or adapter code.
|
You do not write infrastructure modules, workflow YAML, or adapter code.
|
||||||
You write a contract YAML file and the platform does the rest. Your
|
You write a contract YAML file and the platform does the rest. Your
|
||||||
@@ -19,7 +19,7 @@ definitions.
|
|||||||
|
|
||||||
```mermaid
|
```mermaid
|
||||||
flowchart LR
|
flowchart LR
|
||||||
A["your repo<br/>(app code + contracts + CI definitions)"] -->|uses: acdl/.github/workflows/deploy.yml@v1.6| B
|
A["your repo<br/>(app code + contracts + CI definitions)"] -->|uses: acdl/.github/workflows/deploy.yml@v1.9| B
|
||||||
B["platform runners<br/>(modules + pipelines + adapters + schemas)"] -->|contract -> resolver -> stack -> adapter<br/>-> security checks -> infrastructure plan -> policy checks<br/>-> confidence -> apply -> evidence event| C
|
B["platform runners<br/>(modules + pipelines + adapters + schemas)"] -->|contract -> resolver -> stack -> adapter<br/>-> security checks -> infrastructure plan -> policy checks<br/>-> confidence -> apply -> evidence event| C
|
||||||
C["your resources in AWS"]
|
C["your resources in AWS"]
|
||||||
```
|
```
|
||||||
@@ -27,7 +27,7 @@ flowchart LR
|
|||||||
## Versioning the `uses:` reference
|
## Versioning the `uses:` reference
|
||||||
|
|
||||||
The central deployment pipeline is **always versioned with floating MAJOR
|
The central deployment pipeline is **always versioned with floating MAJOR
|
||||||
and MINOR tags** (e.g. `acdl/pipelines/deploy.yaml@v1.6`). Version
|
and MINOR tags** (e.g. `acdl/pipelines/deploy.yaml@v1.9`). Version
|
||||||
constraints cannot be expressed inside the contract, so the tag in
|
constraints cannot be expressed inside the contract, so the tag in
|
||||||
`uses:` is the only immutability lever a consumer has. See
|
`uses:` is the only immutability lever a consumer has. See
|
||||||
[Versioning](pipeline/versioning) for the full rationale.
|
[Versioning](pipeline/versioning) for the full rationale.
|
||||||
@@ -47,7 +47,7 @@ platform-managed. See [Environments](environments/).
|
|||||||
environment is bound, your first pipeline run emits a friendly onboarding
|
environment is bound, your first pipeline run emits a friendly onboarding
|
||||||
prompt. See [Environments](environments/).
|
prompt. See [Environments](environments/).
|
||||||
- **Authorization to reference the central pipeline.** Onboarding grants
|
- **Authorization to reference the central pipeline.** Onboarding grants
|
||||||
your repo the right to `uses: acdl/.github/workflows/deploy.yml@v1.6`.
|
your repo the right to `uses: acdl/.github/workflows/deploy.yml@v1.9`.
|
||||||
Contact the platform team if you have not been onboarded.
|
Contact the platform team if you have not been onboarded.
|
||||||
|
|
||||||
## Step 1 — Create a consumer repo
|
## Step 1 — Create a consumer repo
|
||||||
@@ -92,7 +92,7 @@ In your contract YAML, declare `uses:` pointing at the central ACDL
|
|||||||
deployment pipeline with a **versioned tag** (floating MAJOR + MINOR):
|
deployment pipeline with a **versioned tag** (floating MAJOR + MINOR):
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
```
|
```
|
||||||
|
|
||||||
This tells the platform to run the standard deployment pipeline:
|
This tells the platform to run the standard deployment pipeline:
|
||||||
@@ -104,7 +104,7 @@ policy checks → confidence → evidence event → apply.
|
|||||||
Write `.acdl/contract.yaml`. The `static-assets` example:
|
Write `.acdl/contract.yaml`. The `static-assets` example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
module: static-assets
|
module: static-assets
|
||||||
environment: dev
|
environment: dev
|
||||||
inputs:
|
inputs:
|
||||||
@@ -115,7 +115,7 @@ inputs:
|
|||||||
A `microservice` example:
|
A `microservice` example:
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
module: microservice
|
module: microservice
|
||||||
environment: dev
|
environment: dev
|
||||||
inputs:
|
inputs:
|
||||||
@@ -129,7 +129,7 @@ inputs:
|
|||||||
|
|
||||||
| Field | Type | Required | Description |
|
| Field | Type | Required | Description |
|
||||||
|-------|------|----------|-------------|
|
|-------|------|----------|-------------|
|
||||||
| `uses` | string | yes | Reference to the central deployment pipeline, **versioned** with a floating MAJOR+MINOR tag (e.g. `acdl/pipelines/deploy.yaml@v1.6`). Bare or `@main` references are discouraged. See [Versioning](pipeline/versioning). |
|
| `uses` | string | yes | Reference to the central deployment pipeline, **versioned** with a floating MAJOR+MINOR tag (e.g. `acdl/pipelines/deploy.yaml@v1.9`). Bare or `@main` references are discouraged. See [Versioning](pipeline/versioning). |
|
||||||
| `module` | string | yes | Module name from the registry — any primitive or module (e.g. `static-assets`, `microservice`, `s3`). See the [module catalog](modules/). |
|
| `module` | string | yes | Module name from the registry — any primitive or module (e.g. `static-assets`, `microservice`, `s3`). See the [module catalog](modules/). |
|
||||||
| `environment` | string | yes | The platform-managed environment to deploy to (e.g. `dev`). See [Environments](environments/). |
|
| `environment` | string | yes | The platform-managed environment to deploy to (e.g. `dev`). See [Environments](environments/). |
|
||||||
| `inputs` | object | yes | Module-specific inputs (see the module's README). |
|
| `inputs` | object | yes | Module-specific inputs (see the module's README). |
|
||||||
@@ -166,14 +166,14 @@ on:
|
|||||||
branches: [main]
|
branches: [main]
|
||||||
jobs:
|
jobs:
|
||||||
deploy:
|
deploy:
|
||||||
uses: acdl/.github/workflows/deploy.yml@v1.6
|
uses: acdl/.github/workflows/deploy.yml@v1.9
|
||||||
with:
|
with:
|
||||||
contract: .acdl/contract.yaml
|
contract: .acdl/contract.yaml
|
||||||
```
|
```
|
||||||
|
|
||||||
That is the entire consumer-side workflow. When you push to `main`:
|
That is the entire consumer-side workflow. When you push to `main`:
|
||||||
|
|
||||||
1. The platform runner resolves `uses: acdl/.github/workflows/deploy.yml@v1.6`
|
1. The platform runner resolves `uses: acdl/.github/workflows/deploy.yml@v1.9`
|
||||||
to the reusable workflow **at the pinned tag**.
|
to the reusable workflow **at the pinned tag**.
|
||||||
2. A **platform-provided runner** checks out **your** repo.
|
2. A **platform-provided runner** checks out **your** repo.
|
||||||
3. The runner checks out the **ACDL platform repo** into the workspace —
|
3. The runner checks out the **ACDL platform repo** into the workspace —
|
||||||
@@ -229,7 +229,7 @@ flowchart TD
|
|||||||
a stack JSON instance.
|
a stack JSON instance.
|
||||||
3. **security checks** (adapter) — security checks run on the resolved
|
3. **security checks** (adapter) — security checks run on the resolved
|
||||||
stack before any infrastructure is planned.
|
stack before any infrastructure is planned.
|
||||||
4. **infrastructure plan** (adapter) — the substrate adapter compiles the
|
4. **infrastructure plan** (adapter) — the engine adapter compiles the
|
||||||
stack to an infrastructure plan. You see the plan in your run logs.
|
stack to an infrastructure plan. You see the plan in your run logs.
|
||||||
5. **policy checks** (adapter) — policy checks run on the plan. The results
|
5. **policy checks** (adapter) — policy checks run on the plan. The results
|
||||||
are normalized to `PolicyCheckResult` records. Each result has a
|
are normalized to `PolicyCheckResult` records. Each result has a
|
||||||
@@ -281,7 +281,7 @@ push your container image to the ECR repo the platform created.
|
|||||||
Change `environment` in your contract (keeping the same versioned `uses:`):
|
Change `environment` in your contract (keeping the same versioned `uses:`):
|
||||||
|
|
||||||
```yaml
|
```yaml
|
||||||
uses: acdl/pipelines/deploy.yaml@v1.6
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
environment: qa # QA attestation + confidence >= 0.75
|
environment: qa # QA attestation + confidence >= 0.75
|
||||||
```
|
```
|
||||||
|
|
||||||
@@ -292,7 +292,7 @@ for the full table.
|
|||||||
## Step 9 — Compliance extensions
|
## Step 9 — Compliance extensions
|
||||||
|
|
||||||
Each module lists compliance extension points for the future compliance
|
Each module lists compliance extension points for the future compliance
|
||||||
milestone (GDPR, SOX, SOC2, HIPAA, DORA). See each module's README under
|
milestone (GDPR, SOX, SOC2, DORA). See each module's README under
|
||||||
`modules/l1/<name>/README.md` or `modules/l2/<name>/README.md` for the
|
`modules/l1/<name>/README.md` or `modules/l2/<name>/README.md` for the
|
||||||
per-module extension points. Common examples:
|
per-module extension points. Common examples:
|
||||||
|
|
||||||
@@ -310,11 +310,11 @@ per-module extension points. Common examples:
|
|||||||
| Contract schema | `schemas/contract.schema.json` | JSON Schema for consumer contracts. |
|
| Contract schema | `schemas/contract.schema.json` | JSON Schema for consumer contracts. |
|
||||||
| Stack schema | `schemas/stack.schema.json` | JSON Schema for the resolved stack instance. |
|
| Stack schema | `schemas/stack.schema.json` | JSON Schema for the resolved stack instance. |
|
||||||
| Module catalog | [modules/](modules/) | All primitives and modules. |
|
| Module catalog | [modules/](modules/) | All primitives and modules. |
|
||||||
| Sample contract | `contracts/static-assets.yaml` | The reference example contract (uses `@v1.6`). |
|
| Sample contract | `contracts/static-assets.yaml` | The reference example contract (uses `@v1.9`). |
|
||||||
| Sample contract | `contracts/microservice.yaml` | The microservice example contract (uses `@v1.6`). |
|
| Sample contract | `contracts/microservice.yaml` | The microservice example contract (uses `@v1.9`). |
|
||||||
| Module examples | `modules/<name>/examples/` | Validated per-module example contracts (`simple.yaml` + `complex.yaml`). |
|
| Module examples | `modules/<name>/examples/` | Validated per-module example contracts (`simple.yaml` + `complex.yaml`). |
|
||||||
| Contract resolver | `core/contract_resolver.py` | Resolves contracts to stack instances. |
|
| Contract resolver | `core/contract_resolver.py` | Resolves contracts to stack instances. |
|
||||||
| Substrate adapter | `adapters/terraform/adapter.py` | Compiles stack instances to infrastructure. |
|
| Angine adapter | `adapters/terraform/adapter.py` | Compiles stack instances to infrastructure. |
|
||||||
| Platform pipeline runner | `scripts/run_platform.sh` | The pipeline runner (platform-side; consumers do not invoke it directly). |
|
| Platform pipeline runner | `scripts/run_platform.sh` | The pipeline runner (platform-side; consumers do not invoke it directly). |
|
||||||
| Environments | [environments/](environments/) | Platform-managed environments + onboarding. |
|
| Environments | [environments/](environments/) | Platform-managed environments + onboarding. |
|
||||||
| Versioning | [pipeline/versioning](pipeline/versioning) | The `uses:` tag + module versioning. |
|
| Versioning | [pipeline/versioning](pipeline/versioning) | The `uses:` tag + module versioning. |
|
||||||
@@ -341,7 +341,7 @@ destruction:
|
|||||||
with:
|
with:
|
||||||
contract: .acdl/contract.yaml
|
contract: .acdl/contract.yaml
|
||||||
mode: decommission
|
mode: decommission
|
||||||
changeRequestId: "CR-2026-001"
|
changeRequestId: "CHG0678912"
|
||||||
```
|
```
|
||||||
|
|
||||||
3. **Step 1 — Disable deletion protection (HITL SRE gate):** The pipeline
|
3. **Step 1 — Disable deletion protection (HITL SRE gate):** The pipeline
|
||||||
@@ -376,4 +376,84 @@ window if needed. The CMK is permanently deleted after the window expires.
|
|||||||
The uptime monitoring stack (deployed with separate state) is not
|
The uptime monitoring stack (deployed with separate state) is not
|
||||||
automatically destroyed by the decommission. It must be destroyed
|
automatically destroyed by the decommission. It must be destroyed
|
||||||
separately (or left running to monitor the decommissioned stack's
|
separately (or left running to monitor the decommissioned stack's
|
||||||
endpoints going dark).
|
endpoints going dark).
|
||||||
|
## Per-environment deployment
|
||||||
|
|
||||||
|
ACDL supports a **promotion-without-editing** model: you do not edit the
|
||||||
|
`environment:` field in a contract to promote dev → qa → prod → dr.
|
||||||
|
Instead, there is **one CI job per environment**, each pointing at its
|
||||||
|
respective contract (or the same contract + the `environment` workflow
|
||||||
|
input). Promotion = running the matching job.
|
||||||
|
|
||||||
|
### Two shapes (both supported)
|
||||||
|
|
||||||
|
**Shape 1 — per-environment contract files:** a consumer repo has one
|
||||||
|
contract per environment (e.g. `.acdl/static-assets.dev.yaml`,
|
||||||
|
`.acdl/static-assets.qa.yaml`, …). Each sets `environment:` to its own
|
||||||
|
name and uses interpolation so env-specific values differ automatically:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# .acdl/static-assets.qa.yaml
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.9
|
||||||
|
module: static-assets
|
||||||
|
environment: qa
|
||||||
|
inputs:
|
||||||
|
bucket_name: acdl-${env.environment}-${contract.module}-${env.account_id}-${env.region}
|
||||||
|
region: ${env.region}
|
||||||
|
```
|
||||||
|
|
||||||
|
**Shape 2 — single contract + `environment` workflow input:** the
|
||||||
|
reusable deploy workflow (`acdl/.github/workflows/deploy.yml@v1.9`)
|
||||||
|
declares an `environment` input. When non-empty, it overrides the
|
||||||
|
contract's `environment` field at load time (before interpolation), so
|
||||||
|
the same contract can be promoted by passing a different environment:
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
# .github/workflows/deploy-qa.yml (caller workflow)
|
||||||
|
on: workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
approve_qa:
|
||||||
|
description: "Set to true to approve the QA promotion"
|
||||||
|
type: boolean
|
||||||
|
required: true
|
||||||
|
jobs:
|
||||||
|
deploy-qa:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.9
|
||||||
|
with:
|
||||||
|
environment: qa
|
||||||
|
contract: .acdl/contract.yaml
|
||||||
|
```
|
||||||
|
|
||||||
|
### One job per environment
|
||||||
|
|
||||||
|
A consumer repo's `.github/workflows/` directory has one caller workflow
|
||||||
|
per environment:
|
||||||
|
|
||||||
|
| File | Environment | Gate |
|
||||||
|
|------|-------------|------|
|
||||||
|
| `deploy-dev.yml` | dev | autonomous (no gate, confidence ≥ 0.50) |
|
||||||
|
| `deploy-qa.yml` | qa | QA HITL (`approve_qa` workflow_dispatch input; `github.actor` is the approver of record) |
|
||||||
|
| `deploy-prod.yml` | prod | SRE HITL (`approve_prod`; separation-of-duties enforced) |
|
||||||
|
| `deploy-dr.yml` | dr | SRE HITL (`approve_dr`) |
|
||||||
|
|
||||||
|
**Promotion = running the matching job.** No `environment:` field editing.
|
||||||
|
The approver identity is recorded to the DynamoDB outbox
|
||||||
|
(`approver_qa` / `approver_prod` / `approver_dr`) and the separation-of-
|
||||||
|
duties check blocks a prod promotion when `approver_qa == approver_prod`
|
||||||
|
(see `core/hitl_matrix_design.md`).
|
||||||
|
|
||||||
|
### Interpolation reference
|
||||||
|
|
||||||
|
| Token | Resolves to | Example |
|
||||||
|
|-------|-------------|---------|
|
||||||
|
| `${env.environment}` | the environment name (dev/qa/prod/dr) | `qa` |
|
||||||
|
| `${env.region}` | the environment's AWS region | `us-east-1` |
|
||||||
|
| `${env.account_id}` | the environment's AWS account id | `123456789012` |
|
||||||
|
| `${env.state_backend.bucket}` | the environment's state bucket | `acdl-qa-state` |
|
||||||
|
| `${env.network.vpc_cidr}` | the environment's VPC CIDR | `10.1.0.0/16` |
|
||||||
|
| `${contract.module}` | the contract's module name | `static-assets` |
|
||||||
|
| `${contract.environment}` | the contract's environment field | `qa` |
|
||||||
|
| `${contract.inputs.<name>}` | a contract input value | (as declared) |
|
||||||
|
|
||||||
|
Unknown tokens raise `ValueError` (fail loud). Expansion is recursive
|
||||||
|
(nested map/list values expand too).
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ There are two kinds of repository in the ACDL model:
|
|||||||
| [Pipeline](pipeline/) | Consumers + platform engineers | The central CI + deployment pipeline and its stages. |
|
| [Pipeline](pipeline/) | Consumers + platform engineers | The central CI + deployment pipeline and its stages. |
|
||||||
| [Versioning](pipeline/versioning) | Consumers + platform engineers | Module versioning + deploy-pipeline versioning (the `uses:` tag). |
|
| [Versioning](pipeline/versioning) | Consumers + platform engineers | Module versioning + deploy-pipeline versioning (the `uses:` tag). |
|
||||||
| [Environments](environments/) | Consumers | Platform-managed environments and the first-run onboarding flow. |
|
| [Environments](environments/) | Consumers | Platform-managed environments and the first-run onboarding flow. |
|
||||||
| [Architecture](architecture) | Platform engineers | The current architecture — layers, cross-cutting concerns, the substrate abstraction. |
|
| [Architecture](architecture) | Platform engineers | The current architecture — layers, cross-cutting concerns, the engine abstraction. |
|
||||||
| [Vision](vision) | All | The why — the friction the platform absorbs and the north star. |
|
| [Vision](vision) | All | The why — the friction the platform absorbs and the north star. |
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
@@ -63,8 +63,8 @@ Planned future features (no dates; tracked in the internal roadmap):
|
|||||||
consumer creates a module directly from the contract file (the "composition"
|
consumer creates a module directly from the contract file (the "composition"
|
||||||
mechanism, redesigned).
|
mechanism, redesigned).
|
||||||
- **Compliance milestone** — per-module compliance extension points (GDPR,
|
- **Compliance milestone** — per-module compliance extension points (GDPR,
|
||||||
SOX, SOC2, HIPAA, DORA) wired into the pipeline.
|
SOX, SOC2, DORA) wired into the pipeline.
|
||||||
- **Additional substrate adapters** — beyond the Terraform adapter.
|
- **Additional engine adapters** — beyond the Terraform adapter.
|
||||||
- **Environment self-service** — a consumer-facing flow to request and
|
- **Environment self-service** — a consumer-facing flow to request and
|
||||||
provision a new platform-managed environment.
|
provision a new platform-managed environment.
|
||||||
- **HITL gates for qa / prod / dr** — human attestation + higher confidence
|
- **HITL gates for qa / prod / dr** — human attestation + higher confidence
|
||||||
|
|||||||
@@ -9,7 +9,7 @@ Reusable building blocks for cloud infrastructure. There are two kinds:
|
|||||||
complete stack (e.g. an ECS Fargate microservice). Each module has a
|
complete stack (e.g. an ECS Fargate microservice). Each module has a
|
||||||
`composition.json` declaring its children and wires.
|
`composition.json` declaring its children and wires.
|
||||||
|
|
||||||
The substrate adapter compiles a module instance to infrastructure. Each
|
The engine adapter compiles a module instance to infrastructure. Each
|
||||||
module's README documents which resources it creates.
|
module's README documents which resources it creates.
|
||||||
|
|
||||||
## Primitives
|
## Primitives
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ flowchart TD
|
|||||||
wires the contract inputs, emits a stack JSON instance).
|
wires the contract inputs, emits a stack JSON instance).
|
||||||
3. **security checks** (adapter) — security checks run on the resolved
|
3. **security checks** (adapter) — security checks run on the resolved
|
||||||
stack before any infrastructure is planned.
|
stack before any infrastructure is planned.
|
||||||
4. **infrastructure plan** (adapter) — the substrate adapter compiles the
|
4. **infrastructure plan** (adapter) — the engine adapter compiles the
|
||||||
stack to an infrastructure plan.
|
stack to an infrastructure plan.
|
||||||
5. **policy checks** (adapter) — policy checks run on the plan. Results are
|
5. **policy checks** (adapter) — policy checks run on the plan. Results are
|
||||||
normalized to `PolicyCheckResult` records (severity, rule ID, pass/fail).
|
normalized to `PolicyCheckResult` records (severity, rule ID, pass/fail).
|
||||||
|
|||||||
@@ -0,0 +1,328 @@
|
|||||||
|
# Presentations
|
||||||
|
|
||||||
|
Leadership-facing presentation decks for the ACDL platform.
|
||||||
|
|
||||||
|
## The 4-step slide creation process
|
||||||
|
|
||||||
|
Every presentation in this folder is produced by the same four-step process.
|
||||||
|
**Never edit the Marp deck, the PPTX, or the talking points directly** —
|
||||||
|
always start from the full markdown source of truth (Step 1), synthesize the
|
||||||
|
Marp deck (Step 2), export to HTML + PPTX (Step 3), then distill the talking
|
||||||
|
points (Step 4). This keeps a reviewable, plain-text source of truth for
|
||||||
|
every deck and a presenter-ready cue sheet for delivery.
|
||||||
|
|
||||||
|
```
|
||||||
|
Step 1: full markdown Step 2: Marp deck Step 3: HTML + PPTX Step 4: Talking points
|
||||||
|
(source of truth) ──► (lean, 10 slides) ──► (rendered) ──► (presenter cues)
|
||||||
|
*.md *-marp.md *.html / *.pptx *-talking-points.md
|
||||||
|
+ speaker notes + embedded PNG diagrams + 3-6 bullets per slide
|
||||||
|
+ mermaid code blocks + Marp frontmatter + key takeaway per slide
|
||||||
|
+ maturity badges + indexed by Marp slide #
|
||||||
|
+ no speaker notes + content distilled from Step 1
|
||||||
|
```
|
||||||
|
|
||||||
|
### Step 1 — Full markdown (source of truth)
|
||||||
|
|
||||||
|
**File convention:** `<deck-name>.md` (e.g. `how-the-platform-works.md`).
|
||||||
|
|
||||||
|
Write the complete deck as a standard markdown file. This is the **source of
|
||||||
|
truth** — it contains:
|
||||||
|
|
||||||
|
- Every slide as an `## Slide N — Title` H2 section.
|
||||||
|
- Tight bullets with leadership-relevant content.
|
||||||
|
- A `> **Speaker notes:**` block at the end of each slide with the nuance,
|
||||||
|
the "who cares and why," and the honesty caveats.
|
||||||
|
- Mermaid diagrams as ```` ```mermaid ```` fenced code blocks (these render
|
||||||
|
on GitHub/Pages but not in Marp — Step 2 converts them to images).
|
||||||
|
- An honest "shipped vs. planned" framing: every "available today" claim is
|
||||||
|
grounded in shipped/verified work; every "planned" item is explicitly
|
||||||
|
marked.
|
||||||
|
|
||||||
|
**Why this file is the source of truth:** it is reviewable in any markdown
|
||||||
|
viewer, diffs cleanly in git, and carries the full reasoning (speaker notes)
|
||||||
|
that a presenter needs. The Marp deck and PPTX are *derived artifacts* — if a
|
||||||
|
fact is wrong, fix it here and re-run Steps 2 and 3.
|
||||||
|
|
||||||
|
### Step 2 — Marp deck synthesis
|
||||||
|
|
||||||
|
**File convention:** `<deck-name>-marp.md` (e.g. `how-the-platform-works-marp.md`).
|
||||||
|
|
||||||
|
Synthesize the full markdown into a lean Marp deck:
|
||||||
|
|
||||||
|
- **Marp frontmatter** at the top: `marp: true`, `theme: default`,
|
||||||
|
`paginate: true`, `size: 16x9`, a header/footer, and an inline `style:`
|
||||||
|
block for fonts, colors, tables, badges.
|
||||||
|
- **No speaker notes.** The Marp deck is what the audience sees; the
|
||||||
|
speaker notes live only in the Step 1 source of truth.
|
||||||
|
- **Mermaid diagrams → PNG images.** Marp does not render mermaid fenced
|
||||||
|
blocks natively. Extract each mermaid block from Step 1 into a `.mmd`
|
||||||
|
source file under `assets/mmd/`, render it to PNG under `assets/png/`,
|
||||||
|
and embed it with ``.
|
||||||
|
- **`<!-- _class: title -->` + `<!-- _paginate: false -->`** on title and
|
||||||
|
closing slides for the dark-background title style.
|
||||||
|
- **Maturity badges** using inline spans:
|
||||||
|
`<span class="badge testing">Testing</span>`
|
||||||
|
`<span class="badge planned">Planned</span>`
|
||||||
|
`<span class="badge agentic">Agentic</span>`
|
||||||
|
- **Tighter prose** than Step 1 — strip the speaker-note nuance; keep the
|
||||||
|
leadership-relevant selling points.
|
||||||
|
|
||||||
|
### Step 3 — Render to HTML and PPTX
|
||||||
|
|
||||||
|
Both formats are derived from the Marp deck. **HTML is committed to the repo**
|
||||||
|
(viewable in any browser, self-contained with base64-embedded images). **PPTX
|
||||||
|
is uploaded to the Gitea release** as a downloadable attachment (binary, not
|
||||||
|
committed to git).
|
||||||
|
|
||||||
|
#### HTML export (committed to repo)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
CHROME_PATH=/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome \
|
||||||
|
npx --yes @marp-team/marp-cli@latest --allow-local-files \
|
||||||
|
docs/presentations/<deck-name>-marp.md \
|
||||||
|
-o docs/presentations/<deck-name>.html
|
||||||
|
```
|
||||||
|
|
||||||
|
HTML export inlines images as base64 data URIs — no `--allow-local-files`
|
||||||
|
needed for self-contained output, but it's required when the Marp deck
|
||||||
|
references local PNG assets. The resulting HTML is a single self-contained
|
||||||
|
file that renders the full deck with the S&P Global Energy theme.
|
||||||
|
|
||||||
|
**Re-render the HTML whenever the Marp source changes.** The HTML files are
|
||||||
|
committed artifacts, not generated on-the-fly — they must be re-rendered and
|
||||||
|
re-committed when the Marp deck is updated.
|
||||||
|
|
||||||
|
#### PPTX export (uploaded to Gitea release)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
CHROME_PATH=/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome \
|
||||||
|
npx --yes @marp-team/marp-cli@latest --allow-local-files \
|
||||||
|
docs/presentations/<deck-name>-marp.md \
|
||||||
|
-o <output-path>.pptx
|
||||||
|
```
|
||||||
|
|
||||||
|
The `--allow-local-files` flag is **required** for PPTX export so the local
|
||||||
|
PNG diagrams are embedded in the file. PPTX files are not committed to the
|
||||||
|
repo (binary, no meaningful diffs) — they are uploaded to the Gitea release
|
||||||
|
as downloadable attachments.
|
||||||
|
|
||||||
|
### Step 4 — Talking points (presenter cues)
|
||||||
|
|
||||||
|
**File convention:** `<deck-name>-talking-points.md` (e.g.
|
||||||
|
`how-the-platform-works-talking-points.md`).
|
||||||
|
|
||||||
|
Distill the source of truth (Step 1) into presenter-ready cues, indexed by
|
||||||
|
the Marp deck (Step 2) slide structure:
|
||||||
|
|
||||||
|
- **One section per Marp slide** — `## Slide N — Title`, matching the Marp
|
||||||
|
deck's 10 main + 6 appendix slide structure exactly. The Marp deck
|
||||||
|
provides the indexing and context (what the audience sees); the source
|
||||||
|
markdown provides the content (the speaker notes, the detail, the nuance).
|
||||||
|
- **3-6 talking point bullets per slide** — punchy, actionable cues distilled
|
||||||
|
from the source markdown's speaker notes. NOT the speaker notes verbatim
|
||||||
|
(those are too long and too contextual). These are prompts: "Land this
|
||||||
|
point," "Contrast with X," "Be honest about Y."
|
||||||
|
- **Key takeaway per slide** — the one memorable thing the audience should
|
||||||
|
walk away with from that slide.
|
||||||
|
- **No content duplication** — the talking points reference the Marp slides
|
||||||
|
for visual context and the source markdown for full detail. They don't
|
||||||
|
repeat either; they bridge them.
|
||||||
|
|
||||||
|
**Why this file exists:** a presenter needs a cue sheet they can glance at
|
||||||
|
during delivery — not the full speaker notes (too long), not the Marp slides
|
||||||
|
(no detail). The talking points file is the middle layer: what to say, in
|
||||||
|
what order, with what emphasis, per slide.
|
||||||
|
|
||||||
|
**When to update:** re-distill the talking points whenever the Marp deck
|
||||||
|
structure changes (slides added, removed, merged, or re-ordered) or whenever
|
||||||
|
the source markdown's speaker notes are updated. The talking points are a
|
||||||
|
*derived artifact* — if a fact is wrong, fix it in the source markdown (Step 1)
|
||||||
|
and re-distill.
|
||||||
|
|
||||||
|
## Directory layout
|
||||||
|
|
||||||
|
```
|
||||||
|
docs/presentations/
|
||||||
|
├── README.md ← this file
|
||||||
|
├── how-the-platform-works.md ← Step 1: full source of truth
|
||||||
|
├── how-the-platform-works-marp.md ← Step 2: Marp deck (10 main + 6 appendix)
|
||||||
|
├── how-the-platform-works.html ← Step 3: rendered HTML (committed)
|
||||||
|
├── how-the-platform-works-talking-points.md ← Step 4: presenter cues (16 sections)
|
||||||
|
├── the-developer-experience.md ← Step 1: full source of truth
|
||||||
|
├── the-developer-experience-marp.md ← Step 2: Marp deck (10 main + 6 appendix)
|
||||||
|
├── the-developer-experience.html ← Step 3: rendered HTML (committed)
|
||||||
|
├── the-developer-experience-talking-points.md ← Step 4: presenter cues (16 sections)
|
||||||
|
└── assets/
|
||||||
|
├── puppeteer-config.json ← no-sandbox config for mmdc
|
||||||
|
├── mmd/ ← mermaid source files (Step 2 input)
|
||||||
|
│ ├── platform-works-01-contract-driven.mmd
|
||||||
|
│ ├── platform-works-02-end-to-end-flow.mmd
|
||||||
|
│ ├── platform-works-03-scope-boundary.mmd
|
||||||
|
│ ├── platform-works-04-confidence-signal.mmd
|
||||||
|
│ ├── platform-works-05-attestation-flow.mmd
|
||||||
|
│ ├── developer-experience-01b-scope-boundary.mmd
|
||||||
|
│ ├── developer-experience-02-what-dev-does.mmd
|
||||||
|
│ ├── developer-experience-03-no-cloning.mmd
|
||||||
|
│ ├── developer-experience-04-promotion-journey.mmd
|
||||||
|
│ └── road-to-north-star.mmd
|
||||||
|
└── png/ ← rendered PNGs (embedded in Marp)
|
||||||
|
├── platform-works-01-contract-driven.png
|
||||||
|
├── platform-works-02-end-to-end-flow.png
|
||||||
|
├── platform-works-03-scope-boundary.png
|
||||||
|
├── platform-works-04-confidence-signal.png
|
||||||
|
├── platform-works-05-attestation-flow.png
|
||||||
|
├── developer-experience-01b-scope-boundary.png
|
||||||
|
├── developer-experience-02-what-dev-does.png
|
||||||
|
├── developer-experience-03-no-cloning.png
|
||||||
|
├── developer-experience-04-promotion-journey.png
|
||||||
|
└── road-to-north-star.png
|
||||||
|
```
|
||||||
|
|
||||||
|
## Conventions
|
||||||
|
|
||||||
|
### Appendix structure
|
||||||
|
|
||||||
|
Each Marp deck has **10 main slides + 6 appendix slides** (16 total). The
|
||||||
|
main 10 are the presentation; the appendix is for deep dives and Q&A backup.
|
||||||
|
|
||||||
|
- **Main slides** (1-10): the story arc, high-impact, minimal text,
|
||||||
|
visual-heavy. These are what the audience sees during the talk.
|
||||||
|
- **Appendix slides** (A1-A5 + TOC): detail-heavy slides moved out of the
|
||||||
|
main 10 to preserve the narrative flow. The appendix starts with a TOC
|
||||||
|
slide listing the contents, followed by detail slides and a glossary.
|
||||||
|
- **The Road to the North Star** is a required appendix slide in both decks
|
||||||
|
— a phased timeline from v1.0 demo to the North Star, annotated as
|
||||||
|
"proposed phasing, not formally planned."
|
||||||
|
- **The Glossary** is a required appendix slide in both decks — defines
|
||||||
|
acronyms (OIDC, ABAC, CMK, CMDB, RPO, HITL, VCS, NFR) for the audience.
|
||||||
|
|
||||||
|
### Maturity framing
|
||||||
|
|
||||||
|
Every capability claim in a deck is tagged with one of three badges:
|
||||||
|
|
||||||
|
| Badge | Meaning |
|
||||||
|
|---|---|
|
||||||
|
| `Testing` | Works internally, not yet released to consumers (0 adoption) |
|
||||||
|
| `Planned` | On the roadmap, not yet implemented |
|
||||||
|
| `Agentic` | Involves AI agents, autonomous decision-making, or the citizen developer flow |
|
||||||
|
|
||||||
|
This is non-negotiable for a leadership audience: never present a roadmap
|
||||||
|
item as a current capability, and never bury a tested capability's
|
||||||
|
availability. When in doubt, check `.ciagent/ROADMAP.md` and the milestone
|
||||||
|
status in `.ciagent/PROJECT.md`.
|
||||||
|
|
||||||
|
### Audience
|
||||||
|
|
||||||
|
The audience for these decks is **Senior Leadership**: CTO, Head of Cloud,
|
||||||
|
Head of Infrastructure, Head of DevOps. The framing rules:
|
||||||
|
|
||||||
|
- **No jargon.** Translate internal terms: "primitives/modules" not "L1/L2",
|
||||||
|
"intent" not "IR", "human attestation" not "HITL", "pattern" not
|
||||||
|
"composition."
|
||||||
|
- **Selling points forward.** Each slide leads with the leadership-relevant
|
||||||
|
outcome; the mechanism follows.
|
||||||
|
- **Zero-trust, security, observability, auditability, DX, citizen
|
||||||
|
developer** are the themes — not implementation details.
|
||||||
|
|
||||||
|
### Diagrams
|
||||||
|
|
||||||
|
Mermaid diagrams in the Step 1 source use the repo's existing `flowchart`
|
||||||
|
style (renders on GitHub/Pages). For the Marp deck (Step 2):
|
||||||
|
|
||||||
|
1. Extract the mermaid block into `assets/mmd/<deck>-<slide>-<name>.mmd`.
|
||||||
|
2. Use **horizontal layouts** (`flowchart LR`) or **subgraph row-wrapping**
|
||||||
|
for wide diagrams so the PNG fits a 16:9 slide without shrinking to
|
||||||
|
illegibility. A 9-node sequential `flowchart TD` renders as a tall thin
|
||||||
|
strip — restructure it as 2-row subgraphs or `flowchart LR`.
|
||||||
|
3. Render with a 2x scale factor and transparent background for crisp slides.
|
||||||
|
4. Embed with `` (or `h:320` for tall images).
|
||||||
|
|
||||||
|
## Build commands
|
||||||
|
|
||||||
|
### Prerequisites
|
||||||
|
|
||||||
|
- Node.js + npx (for `@marp-team/marp-cli` and `@mermaid-js/mermaid-cli`)
|
||||||
|
- A Chrome/Chromium binary (Marp PPTX export requires it)
|
||||||
|
|
||||||
|
This environment has a working Chromium at:
|
||||||
|
`/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome`
|
||||||
|
|
||||||
|
### Render all mermaid diagrams to PNG
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd docs/presentations/assets
|
||||||
|
for f in mmd/*.mmd; do
|
||||||
|
name=$(basename "$f" .mmd)
|
||||||
|
PUPPETEER_EXECUTABLE_PATH=/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome \
|
||||||
|
npx --yes @mermaid-js/mermaid-cli@latest \
|
||||||
|
-i "$f" -o "png/$name.png" \
|
||||||
|
-p puppeteer-config.json -s 2 -b transparent
|
||||||
|
done
|
||||||
|
```
|
||||||
|
|
||||||
|
The `puppeteer-config.json` passes `--no-sandbox` to the headless browser
|
||||||
|
(required when running as root in this environment).
|
||||||
|
|
||||||
|
### Export a Marp deck to HTML (committed to repo)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
CHROME_PATH=/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome \
|
||||||
|
npx --yes @marp-team/marp-cli@latest --allow-local-files \
|
||||||
|
docs/presentations/<deck-name>-marp.md \
|
||||||
|
-o docs/presentations/<deck-name>.html
|
||||||
|
```
|
||||||
|
|
||||||
|
HTML export inlines images as base64 data URIs. The `--allow-local-files`
|
||||||
|
flag is needed when the Marp deck references local PNG assets (like the
|
||||||
|
diagram images in `assets/png/`). The resulting HTML is self-contained.
|
||||||
|
|
||||||
|
**The HTML files are committed artifacts** — re-render and re-commit whenever
|
||||||
|
the Marp source changes.
|
||||||
|
|
||||||
|
### Export a Marp deck to PPTX (uploaded to Gitea release)
|
||||||
|
|
||||||
|
```bash
|
||||||
|
CHROME_PATH=/root/.cache/ms-playwright/chromium-1217/chrome-linux64/chrome \
|
||||||
|
npx --yes @marp-team/marp-cli@latest --allow-local-files \
|
||||||
|
docs/presentations/<deck-name>-marp.md \
|
||||||
|
-o <output-path>.pptx
|
||||||
|
```
|
||||||
|
|
||||||
|
`--allow-local-files` is **required** for PPTX so local PNG diagrams are
|
||||||
|
embedded in the file. PPTX files are not committed to git — upload them as
|
||||||
|
attachments to the Gitea release.
|
||||||
|
|
||||||
|
## Adding a new presentation
|
||||||
|
|
||||||
|
1. **Write the full markdown** as `<deck-name>.md` following the
|
||||||
|
`## Slide N — Title` + `> **Speaker notes:**` structure. This is the
|
||||||
|
source of truth.
|
||||||
|
2. **Extract any mermaid diagrams** into `assets/mmd/<deck-name>-<slide>-<name>.mmd`
|
||||||
|
and render them to `assets/png/` (command above).
|
||||||
|
3. **Synthesize the Marp deck** as `<deck-name>-marp.md` with frontmatter,
|
||||||
|
no speaker notes, embedded PNGs, and maturity badges.
|
||||||
|
4. **Render to HTML** with `--allow-local-files` and commit the HTML to
|
||||||
|
`docs/presentations/<deck-name>.html`.
|
||||||
|
5. **Render to PPTX** with `--allow-local-files` and upload to the Gitea
|
||||||
|
release (do not commit PPTX to git).
|
||||||
|
6. **Distill the talking points** as `<deck-name>-talking-points.md` — one
|
||||||
|
section per Marp slide, 3-6 talking point bullets + key takeaway, content
|
||||||
|
distilled from the source markdown (Step 1), indexed by the Marp deck
|
||||||
|
(Step 2) slide structure.
|
||||||
|
7. **Verify** the PPTX slide count and that media files are embedded:
|
||||||
|
```bash
|
||||||
|
python3 -c "
|
||||||
|
import zipfile, re
|
||||||
|
with zipfile.ZipFile('<output>.pptx') as z:
|
||||||
|
slides = [n for n in z.namelist() if re.match(r'ppt/slides/slide\d+\.xml$', n)]
|
||||||
|
media = [n for n in z.namelist() if n.startswith('ppt/media/')]
|
||||||
|
print(f'{len(slides)} slides, {len(media)} media files')
|
||||||
|
"
|
||||||
|
```
|
||||||
|
|
||||||
|
## Current decks
|
||||||
|
|
||||||
|
| Deck | Source of truth (Step 1) | Marp deck (Step 2) | Rendered HTML (Step 3) | Talking points (Step 4) | Slides | Audience |
|
||||||
|
|---|---|---|---|---|---|---|
|
||||||
|
| How the Platform Works | `how-the-platform-works.md` | `how-the-platform-works-marp.md` | `how-the-platform-works.html` | `how-the-platform-works-talking-points.md` | 10 main + 6 appendix | CTO, Head of Cloud, Head of Infra, Head of DevOps |
|
||||||
|
| The Developer Experience | `the-developer-experience.md` | `the-developer-experience-marp.md` | `the-developer-experience.html` | `the-developer-experience-talking-points.md` | 10 main + 6 appendix | CTO, Head of Cloud, Head of Infra, Head of DevOps |
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
flowchart LR
|
||||||
|
subgraph UP ["Upstream — anything"]
|
||||||
|
direction TB
|
||||||
|
A["Technical dev\n(app code + contract)"]
|
||||||
|
B["Citizen dev\n(intent → AI agent\n→ contract)"]
|
||||||
|
end
|
||||||
|
subgraph ACDL ["ACDL — infrastructure only"]
|
||||||
|
C["Same contract\nSame pipeline\nSame safety"]
|
||||||
|
D["Provision\nAWS resources"]
|
||||||
|
E["Evidence\nhash-chained"]
|
||||||
|
end
|
||||||
|
subgraph DOWN ["Downstream"]
|
||||||
|
F["AWS resources\nrunning"]
|
||||||
|
G["Consumer pipeline\ndeploys image"]
|
||||||
|
end
|
||||||
|
A --> C
|
||||||
|
B --> C
|
||||||
|
C --> D
|
||||||
|
C --> E
|
||||||
|
D --> F
|
||||||
|
F --> G
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["1. App code<br/>(top level of the repo)"] --> D["Push to main"]
|
||||||
|
B["2. Contract<br/>(.acdl/contract.yaml)"] --> D
|
||||||
|
C["3. CI definition<br/>(.github/workflows/deploy.yml<br/>— one 'uses:' line)"] --> D
|
||||||
|
D --> E["Platform does the rest"]
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["Consumer repo<br/>app + contract + 'uses:'"] -->|triggers on push to main| B["Platform runner"]
|
||||||
|
B -->|checks out the consumer repo| A
|
||||||
|
B -->|checks out the ACDL platform repo<br/>into the workspace| C["Platform code<br/>(modules, adapters, schemas)"]
|
||||||
|
C --> B
|
||||||
|
B -->|runs the pipeline against<br/>the consumer's contract| D["Consumer's resources in AWS"]
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["dev\n≥ 0.50\nautonomous"] -->|promotion| B["qa\n≥ 0.75\nQA attests"]
|
||||||
|
B -->|promotion| C["prod\n≥ 0.90\nSRE attests"]
|
||||||
|
C -->|promotion| D["dr\n≥ 0.95\nSRE + DR drill"]
|
||||||
|
A -.->|"Testing\n(pilot-ready)"| A
|
||||||
|
B -.->|"Planned"| B
|
||||||
|
C -.->|"Planned"| C
|
||||||
|
D -.->|"Planned"| D
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["Consumer<br/>writes a contract"] --> B["Platform resolves,<br/>compiles, checks,<br/>deploys, records"]
|
||||||
|
B --> C["Resources running in AWS<br/>+ tamper-evident evidence"]
|
||||||
@@ -0,0 +1,10 @@
|
|||||||
|
flowchart TD
|
||||||
|
subgraph R1 [" "]
|
||||||
|
direction LR
|
||||||
|
A["Consumer<br/>contract"] --> B["Validate<br/>contract"] --> C["Resolve to<br/>target stack"] --> D["Security<br/>checks"] --> E["Infrastructure<br/>plan"]
|
||||||
|
end
|
||||||
|
subgraph R2 [" "]
|
||||||
|
direction LR
|
||||||
|
F["Policy<br/>checks"] --> G["Confidence<br/>signal"] --> H["Evidence<br/>event"] --> I["Infrastructure<br/>apply"]
|
||||||
|
end
|
||||||
|
E --> F
|
||||||
@@ -0,0 +1,25 @@
|
|||||||
|
flowchart LR
|
||||||
|
subgraph UP ["Upstream — anything"]
|
||||||
|
direction TB
|
||||||
|
A["IDE / IDE + AI\n(dev writes contract)"]
|
||||||
|
B["Agentic SDLC\n(agent writes contract)"]
|
||||||
|
C["Citizen dev\n(vibe codes → AI agent\n→ contract)"]
|
||||||
|
end
|
||||||
|
subgraph ACDL ["ACDL — infrastructure only"]
|
||||||
|
D["Contract\nvalidated"]
|
||||||
|
E["Resolve → Plan\nSecurity + Policy checks\nConfidence signal"]
|
||||||
|
F["Provision\nAWS resources"]
|
||||||
|
G["Evidence\nhash-chained"]
|
||||||
|
end
|
||||||
|
subgraph DOWN ["Downstream"]
|
||||||
|
H["AWS resources\nrunning"]
|
||||||
|
I["Consumer pipeline\ndeploys image"]
|
||||||
|
end
|
||||||
|
A --> D
|
||||||
|
B --> D
|
||||||
|
C --> D
|
||||||
|
D --> E
|
||||||
|
E --> F
|
||||||
|
E --> G
|
||||||
|
F --> H
|
||||||
|
H --> I
|
||||||
@@ -0,0 +1,15 @@
|
|||||||
|
flowchart LR
|
||||||
|
subgraph IN ["6 weighted inputs"]
|
||||||
|
direction TB
|
||||||
|
A["Policy\nconformance"]
|
||||||
|
B["Validation"]
|
||||||
|
C["Freshness"]
|
||||||
|
D["Source\nprovenance"]
|
||||||
|
E["History"]
|
||||||
|
F["NFRs"]
|
||||||
|
end
|
||||||
|
IN --> G["Weighted sum\n→ Confidence score"]
|
||||||
|
G --> H{"Threshold\ngate"}
|
||||||
|
H -->|Meets threshold| I["Proceed"]
|
||||||
|
H -->|Below threshold| J["Halt +\nexplainable reason"]
|
||||||
|
H -->|Critical finding| J
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["Deployment arrives\nat env gate"] --> B["Confidence signal\ncomputed"]
|
||||||
|
B --> C{"Meets\nthreshold?"}
|
||||||
|
C -->|No / Critical| D["Halt —\nexplainable reason"]
|
||||||
|
C -->|Yes| E{"Human attestation\nrequired?"}
|
||||||
|
E -->|No — dev| F["Autonomous\nproceed"]
|
||||||
|
E -->|Yes — qa/prod/dr| G["Approver reviews:\ncontract + plan + evidence"]
|
||||||
|
G --> H{"Approver\ndecides"}
|
||||||
|
H -->|Approve| I["Attestation recorded\n(identity + state)"]
|
||||||
|
H -->|Reject| J["Halt — rejection\nextends audit chain"]
|
||||||
|
I --> K["Deployment\nproceeds"]
|
||||||
|
F --> K
|
||||||
|
K --> L["Evidence written\nRPO=0"]
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
flowchart LR
|
||||||
|
A["v1.0\nDEMO\ncomplete"] --> B["v1.1–v1.8\nPLATFORM BUILD\ncomplete"]
|
||||||
|
B --> C["v1.9\nPRESENTATIONS + PATCHES\ncomplete"]
|
||||||
|
C --> D["v1.10\nNEXT\nHITL wiring\nall-runner OIDC\nregulatory ledger"]
|
||||||
|
D --> E["v2.0\nFUTURE\ncompliance milestone\nself-service\ndynamic modules\nengine adapters"]
|
||||||
|
E --> F["North Star\nREALIZED\nfull autonomy (lower)\nattested (higher)\ncitizen dev live\nevidence regulatory-grade"]
|
||||||
|
A -.->|"stub-driven proof"| A
|
||||||
|
B -.->|"IR + OIDC + ABAC +\nmodule catalog +\nencryption + decommission"| B
|
||||||
|
C -.->|"10-slide decks +\ntalking points +\nS&P theme"| C
|
||||||
|
D -.->|"proposed phasing\nnot formally planned"| D
|
||||||
|
E -.->|"proposed phasing\nnot formally planned"| E
|
||||||
|
After Width: | Height: | Size: 43 KiB |
|
After Width: | Height: | Size: 59 KiB |
|
After Width: | Height: | Size: 67 KiB |
|
After Width: | Height: | Size: 51 KiB |
|
After Width: | Height: | Size: 35 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 36 KiB |
|
After Width: | Height: | Size: 29 KiB |
|
After Width: | Height: | Size: 42 KiB |
|
After Width: | Height: | Size: 58 KiB |
@@ -0,0 +1 @@
|
|||||||
|
{ "args": ["--no-sandbox", "--disable-setuid-sandbox"] }
|
||||||
@@ -0,0 +1,335 @@
|
|||||||
|
---
|
||||||
|
marp: true
|
||||||
|
theme: default
|
||||||
|
paginate: true
|
||||||
|
size: 16x9
|
||||||
|
header: "How The Platform Works"
|
||||||
|
footer: "Internal"
|
||||||
|
style: |
|
||||||
|
section {
|
||||||
|
font-family: "Akkurat Pro", "Helvetica Neue", "Arial", sans-serif;
|
||||||
|
font-size: 22px;
|
||||||
|
color: #1B1B1B;
|
||||||
|
}
|
||||||
|
h1 { color: #D6002A; font-size: 34px; margin-bottom: 0.3em; }
|
||||||
|
h2 { color: #D6002A; font-size: 26px; margin-bottom: 0.2em; }
|
||||||
|
section.title { background: #1B1B1B; color: #fff; border-top: 8px solid #D6002A; }
|
||||||
|
section.title h1 { color: #fff; }
|
||||||
|
table { font-size: 18px; width: 100%; }
|
||||||
|
th { background: #F0F0F0; }
|
||||||
|
blockquote { border-left: 4px solid #D6002A; color: #2E2E2E; font-size: 20px; }
|
||||||
|
img { display: block; margin: 0 auto; max-height: 300px; }
|
||||||
|
em.story { color: #6B7280; font-size: 16px; font-style: italic; }
|
||||||
|
.badge {
|
||||||
|
display: inline-block; padding: 2px 8px; border-radius: 4px;
|
||||||
|
font-size: 14px; font-weight: 600;
|
||||||
|
}
|
||||||
|
.testing { background: #DBEAFE; color: #1E3A5F; }
|
||||||
|
.planned { background: #fef3c7; color: #78350f; }
|
||||||
|
.agentic { background: #EDE9FE; color: #4C1D95; }
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# How The Platform Works
|
||||||
|
|
||||||
|
### Agentic Cloud Delivery Platform
|
||||||
|
|
||||||
|
<style>
|
||||||
|
section.title h1 { font-size: 44px; margin-bottom: 0.1em; }
|
||||||
|
section.title h3 { color: #F0F0F0; font-weight: 400; font-size: 22px; margin-top: 0; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# The Problem & The North Star
|
||||||
|
|
||||||
|
<em class="story">Story beat: Here's the problem we're solving and where we're going.</em>
|
||||||
|
|
||||||
|
Four frictions slow every team:
|
||||||
|
|
||||||
|
- **Cognitive load** — authoring infrastructure correctly; the long tail of services inconsistent in security and observability
|
||||||
|
- **Operational work** — promoting a change from "merged" to "running in production." Manual work that **scales with the system, not the change**
|
||||||
|
- **Red tape** — tickets, approvals, and handoffs that scale with the organization. A merged change waits in a queue
|
||||||
|
- **Scalability without increasing headcount** — throughput scales without linearly scaling platform engineers
|
||||||
|
|
||||||
|
> Consumers **declare intent**; the platform delivers **safe production deployment** — automatically, safely, with a complete audit trail.
|
||||||
|
|
||||||
|
- A merged change progresses **without a platform engineer joining a thread or approving a ticket**
|
||||||
|
- A **non-technical consumer** ships by declaring intent — no workflow, no config file, no infrastructure module
|
||||||
|
- Every production change is **traceable to a human attestation and an immutable evidence stream**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
<em class="story">Story beat: Now that we know the problem, here's where ACDL fits — and where it doesn't.</em>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Upstream is anything** — your IDE, an agentic SDLC, or a citizen developer vibe coding on a laptop. ACDL doesn't care how the contract was produced.
|
||||||
|
- **ACDL is infrastructure only** — it provisions and governs AWS resources. It does not build, test, or deploy your application code. That's upstream.
|
||||||
|
- **Not a general-purpose AI** — autonomy is narrow, scoped to delivery, bounded by strict policy
|
||||||
|
- **Not a permissive delivery highway** — no escape hatches to bypass the confidence framework
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# The Contract-Driven Model
|
||||||
|
|
||||||
|
<em class="story">Story beat: The contract is the boundary between upstream and ACDL. It's all a consumer writes.</em>
|
||||||
|
|
||||||
|
A single YAML contract — **module, environment, inputs**. The platform owns everything else.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Which module** — a catalog of pre-built, security-reviewed building blocks
|
||||||
|
- **Which environment** — the platform raises the safety bar automatically as sensitivity rises
|
||||||
|
- **Which inputs** — infrastructure values that vary per deployment (cpu, memory, port, desired_count)
|
||||||
|
- The consumer provides **no AWS account, no VPC, no state backend** — the platform owns the blast radius
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# The End-to-End Flow
|
||||||
|
|
||||||
|
<em class="story">Story beat: Once the contract is written, here's what the platform does with it — every time.</em>
|
||||||
|
|
||||||
|
Every deployment runs the same stages, in the same order, with the same checks — no team-specific pipelines, no tribal runbooks.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Security and policy checks run *before* any infrastructure is created**
|
||||||
|
- **Every stage produces a record** that feeds the confidence signal and the evidence stream — there is no "unchecked" path
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Zero-Trust by Default
|
||||||
|
|
||||||
|
<em class="story">Story beat: Before any infrastructure is created, here's how access is scoped.</em>
|
||||||
|
|
||||||
|
Consumer repositories hold **no long-lived cloud credentials.** Ever.
|
||||||
|
|
||||||
|
- **Authentication — OIDC federation.** Each job mints a short-lived token; no credential is stored in the consumer repo or in a runner secret. <span class="badge testing">Testing (GitHub Actions)</span> <span class="badge planned">Planned: all runners</span>
|
||||||
|
- **Authorization — attribute-based (ABAC), not role-based.** Two attribute classes scope every action:
|
||||||
|
- **Repository identity** — the role's trust policy binds to the exact consumer repo + branch
|
||||||
|
- **Resource tags** — every resource is tagged `acdl:owner` + `acdl:contract`; the session policy grants access **only to matching tags**
|
||||||
|
|
||||||
|
**The effect:** a consumer can only touch the resources it created. Blast radius is contained. One consumer can never affect another.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Safety is Computed, Not Assumed
|
||||||
|
|
||||||
|
<em class="story">Story beat: Now let's look at how the platform decides whether a deployment is safe.</em>
|
||||||
|
|
||||||
|
Every delivery action produces a **measurable, explainable confidence signal** — a weighted sum of observable facts, not a black box. <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Six weighted inputs** — manually tuned, auditable. If a consumer asks "why 0.62?", the platform answers with a per-input breakdown
|
||||||
|
- **Per-environment thresholds** that rise with sensitivity:
|
||||||
|
|
||||||
|
| Environment | Threshold | Attester |
|
||||||
|
|---|---|---|
|
||||||
|
| dev | ≥ 0.50 | No one — autonomous <span class="badge testing">Testing</span> |
|
||||||
|
| qa | ≥ 0.75 | QA <span class="badge planned">Planned</span> |
|
||||||
|
| prod | ≥ 0.90 | SRE <span class="badge planned">Planned</span> |
|
||||||
|
|
||||||
|
- **A single critical finding hard-blocks** — critical findings are not averaged away
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Security by Construction
|
||||||
|
|
||||||
|
<em class="story">Story beat: Beyond the confidence signal, security defaults are on by construction — not by opt-in.</em>
|
||||||
|
|
||||||
|
Security defaults that **do not require a team to opt in.** Checks run on **every** deployment, normalized to a single schema. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Policy checks** (Checkov, Wiz, Kyverno) — secrets in plaintext, public ingress, IAM wildcards, **required tagging standards** — all run *before* infra is created
|
||||||
|
- **Encryption on every resource** — at-rest encryption on by default; per-stack customer-managed keys with 90-day rotation, **no shared keys across stacks**
|
||||||
|
- **Deletion protection on by default** — `prevent_destroy` on unless explicitly disabled via a documented flag
|
||||||
|
- **Safe decommission** — a 2-step pipeline with **two SRE attestation gates** and a **change-request validated against the CMDB**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Accountability & Audit
|
||||||
|
|
||||||
|
<em class="story">Story beat: Computed safety handles the gate. But humans still matter — here's how accountability works.</em>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Dev is fully autonomous.** The confidence signal (≥ 0.50) is the only gate. <span class="badge testing">Testing</span> <span class="badge agentic">Agentic</span>
|
||||||
|
- **qa, prod, dr require human attestation** — the approver reviews the contract, the planned Terraform changes, and the accumulated evidence <span class="badge planned">Planned</span>
|
||||||
|
- **QA attests to infrastructure readiness, not application code** — the contract, the plan, and the evidence. Application code review is upstream
|
||||||
|
- **Separation of duties** — the QA approver **cannot** be the prod approver. The platform **blocks on a match.** <span class="badge planned">Planned</span>
|
||||||
|
- **Every deployment writes a hash-chained evidence event** — tampering breaks the chain. **RPO = 0** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# Testing vs. Planned
|
||||||
|
|
||||||
|
<em class="story">Story beat: Let's be honest about what works today and what's on the roadmap.</em>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
section { font-size: 20px; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
**11 capabilities testing today** (dev pilot-ready):
|
||||||
|
|
||||||
|
- Contract-driven deploys · Module catalog · Zero-trust OIDC + ABAC
|
||||||
|
- Security + policy checks before infra creation · Confidence signal gating
|
||||||
|
- Hash-chained evidence outbox (RPO = 0) · Encryption by default + per-stack CMKs
|
||||||
|
- Deletion protection + safe decommission · Uptime monitoring
|
||||||
|
- Platform-managed environments · Engine-agnostic core + VCS-agnostic ingestion
|
||||||
|
|
||||||
|
**9 planned** (production path):
|
||||||
|
|
||||||
|
- HITL wiring for qa/prod/dr · All-runner OIDC · Full regulatory ledger
|
||||||
|
- Compliance milestone (GDPR, SOX, SOC2, DORA) · Environment self-service
|
||||||
|
- Dynamic module creation <span class="badge agentic">Agentic</span> · Pattern recognition <span class="badge agentic">Agentic</span>
|
||||||
|
- Additional engine adapters · Deeper observability bootstrap
|
||||||
|
|
||||||
|
*Full inventory + phased roadmap in the appendix.*
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# The Vision Realized
|
||||||
|
|
||||||
|
<em class="story">Story beat: Here's what success looks like when the North Star is reached.</em>
|
||||||
|
|
||||||
|
- **Velocity without sacrificing safety.** Speed is in the ergonomics (a simple contract, a one-line `uses:`); safety is in the gates the consumer cannot bypass.
|
||||||
|
- **Security, observability, and compliance as platform defaults** — not per-team effort, not post-hoc remediation.
|
||||||
|
- **Auditability as a byproduct, not a project.** Every production change is traceable to a human attestation and a tamper-evident evidence event.
|
||||||
|
- **Blast radius contained by design.** Zero-trust OIDC + ABAC means a consumer can only touch its own tagged resources.
|
||||||
|
- **Infrastructure as a utility, not a craft.** Teams consume infrastructure, they don't maintain it.
|
||||||
|
- **A path to the citizen developer.** The same safety envelope that serves a senior engineer will serve a non-technical consumer. <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# Appendix
|
||||||
|
|
||||||
|
<em class="story">For deep dives — these slides cover details omitted from the main 10.</em>
|
||||||
|
|
||||||
|
**Contents:**
|
||||||
|
|
||||||
|
1. Platform-Managed Environments (detail)
|
||||||
|
2. Observability Built In (detail)
|
||||||
|
3. The Road to the North Star (phased roadmap)
|
||||||
|
4. Testing vs. Planned (full inventory)
|
||||||
|
5. Glossary
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A1 — Platform-Managed Environments
|
||||||
|
|
||||||
|
A consumer provides **no AWS account, no VPC, no subnet, no state backend, no runner key.** The platform owns the blast radius.
|
||||||
|
|
||||||
|
A named environment is a platform-owned bundle of:
|
||||||
|
|
||||||
|
- An AWS account (or a scoped partition of one)
|
||||||
|
- A network (VPC + subnets)
|
||||||
|
- A state backend (S3 + DynamoDB for state + locking)
|
||||||
|
- An IAM role surfaced via ABAC, scoped to the consumer's identity and resource tags
|
||||||
|
|
||||||
|
The consumer selects an environment **by name** in their contract. The platform resolves the name to the underlying resources at run time. **The consumer never sees raw credentials.**
|
||||||
|
|
||||||
|
**Friendly onboarding:** the first run detects no environment and emits a guided prompt (not an opaque failure). <span class="badge testing">Testing</span> <span class="badge planned">Self-service: planned</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A2 — Observability Built In
|
||||||
|
|
||||||
|
Monitoring is **a platform default, not a per-team project.** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Uptime monitoring deployed automatically with every stack** — a dedicated monitoring instance is provisioned after any module deploy, in a separate state, with a feature flag to disable
|
||||||
|
- **Monitored endpoints passed from the deployment's own outputs** — no manual endpoint registration
|
||||||
|
- **Alert channels:** Microsoft Teams webhook, email, SMS, and GitHub issues
|
||||||
|
- **The uptime URL is published to the developer** via a PR comment — they don't hunt for it
|
||||||
|
- **Roadmap:** deeper observability bootstrap (dashboards, runbooks, on-call bindings) as first-class contract fields <span class="badge planned">Planned</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# A3 — The Road to the North Star
|
||||||
|
|
||||||
|
*Proposed phasing — not formally planned.*
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# A4 — Testing vs. Planned (Full Inventory)
|
||||||
|
|
||||||
|
<style>
|
||||||
|
section { font-size: 15px; }
|
||||||
|
td { font-size: 14px; vertical-align: top; }
|
||||||
|
ul { margin: 0; padding-left: 1.2em; }
|
||||||
|
li { margin-bottom: 2px; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<table style="width: 100%; border: none;">
|
||||||
|
<tr>
|
||||||
|
<td style="width: 52%; border: none; padding-right: 12px;">
|
||||||
|
|
||||||
|
**Testing** (works internally, dev pilot-ready)
|
||||||
|
|
||||||
|
- Contract-driven deploys with a versioned reusable workflow
|
||||||
|
- Module catalog (primitives + modules) with validated examples
|
||||||
|
- Zero-trust OIDC + ABAC on GitHub Actions runners
|
||||||
|
- Security + policy checks before infra creation (Checkov; Wiz + Kyverno ready)
|
||||||
|
- Confidence signal (6 inputs, per-env thresholds) gating promotion <span class="badge agentic">Agentic</span>
|
||||||
|
- Hash-chained, tamper-evident evidence outbox (RPO = 0)
|
||||||
|
- Encryption by default + per-stack customer-managed keys
|
||||||
|
- Deletion protection by default + safe decommission with SRE gates
|
||||||
|
- Uptime monitoring deployed automatically with every stack
|
||||||
|
- Platform-managed environments + friendly onboarding
|
||||||
|
- Engine-agnostic core (1 adapter: Terraform) + VCS-agnostic ingestion
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td style="width: 48%; border: none; padding-left: 12px;">
|
||||||
|
|
||||||
|
**Planned** (on the roadmap)
|
||||||
|
|
||||||
|
- Real OIDC federation on all platform runners
|
||||||
|
- HITL wiring for qa / prod / dr environments
|
||||||
|
- Full regulatory ledger: S3 Object Lock + JWS signatures + daily checkpoints
|
||||||
|
- Compliance milestone: GDPR, SOX, SOC2, DORA extension points
|
||||||
|
- Environment self-service provisioning
|
||||||
|
- Dynamic module creation from a contract (agentic citizen-developer flow) <span class="badge agentic">Agentic</span>
|
||||||
|
- Pattern recognition compounds value over time <span class="badge agentic">Agentic</span>
|
||||||
|
- Additional engine adapters (OpenTofu, Pulumi, Kubernetes CRDs)
|
||||||
|
- Deeper observability bootstrap (dashboards, runbooks, on-call)
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A5 — Glossary
|
||||||
|
|
||||||
|
| Term | Meaning |
|
||||||
|
|---|---|
|
||||||
|
| **OIDC** | OpenID Connect — federation protocol for short-lived tokens, no long-lived credentials |
|
||||||
|
| **ABAC** | Attribute-Based Access Control — access scoped by resource tags + repo identity, not roles |
|
||||||
|
| **CMK** | Customer-Managed Key — per-stack encryption key, 90-day rotation, no shared keys |
|
||||||
|
| **CMDB** | Configuration Management Database — validates change requests for decommission |
|
||||||
|
| **RPO** | Recovery Point Objective — RPO = 0 means evidence is written synchronously, no data loss |
|
||||||
|
| **HITL** | Human-in-the-Loop — deliberate human attestation required for qa/prod/dr environments |
|
||||||
|
| **VCS** | Version Control System — the git hosting platform (GitHub, Gitea, GitLab) |
|
||||||
|
| **NFR** | Non-Functional Requirement — encryption, tagging, observability standards |
|
||||||
|
| **IR** | Intermediate Representation — the engine-agnostic stack definition between contract and Terraform |
|
||||||
@@ -0,0 +1,213 @@
|
|||||||
|
# How The Platform Works — Talking Points
|
||||||
|
|
||||||
|
> **Companion to:** `how-the-platform-works-marp.md` (10 main + 6 appendix = 16 slides)
|
||||||
|
> **Content source:** `how-the-platform-works.md` (full source of truth with speaker notes)
|
||||||
|
> **Purpose:** Presenter-ready cues — 3-6 talking points per slide + the one key takeaway the audience should remember.
|
||||||
|
> **Audience:** Senior Leadership — CTO, Head of Cloud, Head of Infrastructure, Head of DevOps
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 1 — Title
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Brief introduction — this deck explains *how* the platform works internally, not what the developer experience is (that's the companion deck)
|
||||||
|
- Set the frame: the platform is not a CI/CD tool — it's the organizational lever for shipping safely at the pace the business demands
|
||||||
|
- The deck has 10 main slides plus a 6-slide appendix for deep-dive questions
|
||||||
|
|
||||||
|
**Key takeaway:** This is a platform that computes safety, doesn't assume it.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 2 — The Problem & The North Star
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Open with the cost of the status quo — every team running its own pipeline, its own Terraform, its own review checklist is paying a tax that doesn't differentiate the business
|
||||||
|
- Walk through the 4 frictions quickly: cognitive load, operational work, red tape, scalability. Don't dwell — the North Star is the resolution
|
||||||
|
- Land the North Star quote: "declare intent → safe production deployment" — this is the entire value proposition in one sentence
|
||||||
|
- The litmus test: if a platform engineer still has to touch a ticket for a dev→qa promotion, we haven't delivered the vision
|
||||||
|
- Note: the 2 anti-goals ("not a general-purpose AI" and "not a permissive delivery highway") have moved to slide 3 — they belong with the scope boundary, not the North Star
|
||||||
|
|
||||||
|
**Key takeaway:** The platform absorbs all four frictions. Declare intent, not execute operations.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 3 — Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is the new scope-boundary slide — it tells leadership where ACDL fits and, just as importantly, where it doesn't
|
||||||
|
- Upstream is anything — your IDE, an agentic SDLC, or a citizen developer vibe coding on a laptop. ACDL doesn't care how the contract was produced
|
||||||
|
- ACDL is infrastructure only — it provisions and governs AWS resources. It does not build, test, or deploy your application code. That's upstream
|
||||||
|
- Land the 2 anti-goals: "not a general-purpose AI" (autonomy is narrow, scoped to delivery, bounded by strict policy) and "not a permissive delivery highway" (no escape hatches to bypass the confidence framework)
|
||||||
|
- The sovereign boundary means the platform team owns delivery and infrastructure, not the upstream development process
|
||||||
|
|
||||||
|
**Key takeaway:** ACDL is the delivery and infrastructure boundary. Upstream is anything; ACDL is infra only.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 4 — The Contract-Driven Model
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Emphasize the asymmetry — the consumer's surface is intentionally tiny (module + environment + inputs), the platform's surface is large and opinionated
|
||||||
|
- Note: the contract examples now show **infrastructure inputs** (cpu, memory, desired_count, port) — not a container image. The image is upstream; the platform governs infrastructure
|
||||||
|
- The contract is the API — it's deliberately small so it can be reviewed, validated, and audited
|
||||||
|
- The consumer does not write infrastructure modules, workflow logic, or adapter code — they declare intent; the platform reconciles, provisions, and progresses
|
||||||
|
- Land the "no AWS account, no VPC, no state backend" point — the platform owns the blast radius. Consumers can't drift into misconfigured state or over-permissioned roles because they never touch them
|
||||||
|
|
||||||
|
**Key takeaway:** A single YAML contract. The platform owns everything else — including the blast radius.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 5 — The End-to-End Flow
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Walk the flow left to right once — don't dwell on internals. The point is that the flow is fixed, opinionated, and identical for every consumer
|
||||||
|
- Land beat 1: security and policy checks run *before* any infrastructure is created — not after the fact, not as a post-deployment audit
|
||||||
|
- Land beat 2: every stage produces a record that feeds the confidence signal and the evidence stream. There is no "unchecked" path
|
||||||
|
- Tease the confidence signal (slide 7) — this is where "safety is computed" lands
|
||||||
|
|
||||||
|
**Key takeaway:** The same pipeline, every time. Checks before creation, evidence at every stage.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 6 — Zero-Trust by Default
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is the slide for the Head of Cloud/Security — the key phrase is "blast radius contained to the consumer's own stack"
|
||||||
|
- Contrast with the common failure mode: shared CI roles that can touch any account resource. The platform's ABAC model scopes every action to the consumer's own tagged resources
|
||||||
|
- OIDC means no long-lived credentials in consumer repos — each job mints a short-lived token. Be honest: this is testing on GitHub Actions runners today; all-runner coverage is planned
|
||||||
|
- The static-key override exists for edge cases but is rotated daily on platform runners — it is never the default
|
||||||
|
|
||||||
|
**Key takeaway:** A consumer can only touch the resources it created. One consumer can never affect another.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 7 — Safety is Computed, Not Assumed
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is the bet that separates this platform from "yet another CI/CD tool" — reliance on operator instinct or tenure is not a substitute for a computed, auditable signal
|
||||||
|
- The new confidence signal diagram makes the six inputs and the per-input breakdown visible — walk it briefly so the audience sees the signal is *not* a black box
|
||||||
|
- The weights are **manually tuned**, the inputs are **observable**, and the breakdown is **auditable** — if a consumer asks "why 0.62?", the platform answers with a per-input breakdown. This is the "auditable, not magic" point
|
||||||
|
- Walk the threshold table: dev ≥ 0.50 (autonomous, Testing) → qa ≥ 0.75 (QA, Planned) → prod ≥ 0.90 (SRE, Planned). The bar rises automatically with sensitivity
|
||||||
|
- A single critical policy finding hard-blocks the deployment — critical findings are not averaged away. This is non-negotiable
|
||||||
|
- The thresholds are tunable by Infra & Ops + SRE jointly, and any override is itself a confidence-event in the audit stream
|
||||||
|
|
||||||
|
**Key takeaway:** Safety is a measurable, explainable signal — manually tuned, observable inputs, auditable breakdown. A single critical finding blocks everything.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 8 — Security by Construction
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The phrase to land is "secure by default, not secure by effort" — teams don't opt in to security, it's on by construction
|
||||||
|
- Policy checks (Checkov, Wiz, Kyverno) are normalized to a single schema — we can add a new security tool without changing the confidence model or the evidence stream
|
||||||
|
- Tagging standards are enforced, not advisory — a missing `acdl:owner` tag fails the check, it doesn't warn
|
||||||
|
- Encryption is on every resource with per-stack customer-managed keys — no shared keys across stacks, 90-day rotation
|
||||||
|
- The decommission flow is the counter-argument to "deletion protection makes cleanup impossible" — it's a deliberate, gated, two-SRE-approval path with CMDB validation, not a lock with no key
|
||||||
|
|
||||||
|
**Key takeaway:** Encryption, deletion protection, policy checks — on by default. Decommission is gated, not impossible.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 9 — Accountability & Audit
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The "lower environments autonomous, higher environments attested" tenet is the resolution to the classic "move fast vs. be safe" false dichotomy
|
||||||
|
- The new attestation flow diagram shows the human-in-the-loop path — dev autonomous → qa/prod/dr human attestation → evidence event. Walk it briefly
|
||||||
|
- Land the QA clarification: **QA attests to infrastructure readiness — the contract, the planned Terraform changes, and the accumulated evidence. QA does not review application code (that's upstream).** This is the scope-boundary point reiterated
|
||||||
|
- Badge reclassification to be clear about: separation of duties = **Planned** (not "design tested"); dev autonomous = **Testing**; qa/prod/dr attestation = **Planned**
|
||||||
|
- The audit trail is a byproduct of deployment, not a project — every deployment writes a hash-chained evidence event synchronously (RPO = 0)
|
||||||
|
- Be honest about the ledger: the outbox + hash chain is testing today; the full regulatory ledger (S3 Object Lock, JWS signatures, daily checkpoints) is planned
|
||||||
|
|
||||||
|
**Key takeaway:** Dev is autonomous. Higher environments are attested. QA attests to infra readiness, not app code. Every change is evidenced.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 10 — The Vision Realized
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Close on the strategic frame — the platform is not "a CI/CD tool," it's the organizational lever for shipping safely at the pace the business demands
|
||||||
|
- Velocity without sacrificing safety: speed is in the ergonomics (a simple contract, a one-line `uses:`), safety is in the gates the consumer cannot bypass
|
||||||
|
- Security, observability, and compliance as platform defaults — not per-team effort, not post-hoc remediation
|
||||||
|
- Auditability as a byproduct, not a project — every production change traceable to a human attestation and a tamper-evident evidence event
|
||||||
|
- Infrastructure as a utility, not a craft — teams consume, they don't maintain. The platform compounds value over time by learning from recurring patterns
|
||||||
|
- The path to the citizen developer — the same safety envelope that serves a senior engineer will serve a non-technical consumer. Expanding who can ship safely without lowering the bar
|
||||||
|
|
||||||
|
**Key takeaway:** The investment is in the abstraction, not the tool. Ship safely at the pace the business demands, with the security and audit posture the regulators require.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Appendix TOC — Deep Dives
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- These slides are for follow-up questions — don't walk them in the main 15-minute talk
|
||||||
|
- Pull them up when an audience member wants detail on a specific topic: environments, observability, roadmap, full inventory, or glossary terms
|
||||||
|
- The appendix exists so the main deck stays tight while still having answers ready
|
||||||
|
|
||||||
|
**Key takeaway:** The appendix is the backup — detail on demand, not on the critical path.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A1 — Platform-Managed Environments
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- A consumer provides no AWS account, no VPC, no subnet, no state backend, no runner key — the platform owns the entire blast radius
|
||||||
|
- A named environment is a platform-owned bundle: an AWS account (or scoped partition), a network, a state backend, and an IAM role surfaced via ABAC
|
||||||
|
- The consumer selects an environment by name (`environment: dev`) and the platform resolves it at run time — the consumer never sees raw credentials
|
||||||
|
- Friendly onboarding is testing today: the first run detects no environment and emits a guided prompt, not an opaque failure. Self-service provisioning is planned
|
||||||
|
- For the Head of Cloud: this is the governance story — the platform team owns accounts, network design, and state hygiene; consumers can't drift because they never touch them
|
||||||
|
|
||||||
|
**Key takeaway:** Environments are platform-owned bundles. Consumers pick a name; the platform owns the rest.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A2 — Observability Built In
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Monitoring is a platform default, not a per-team project — you don't deploy a service and *then* remember to set up monitoring
|
||||||
|
- Uptime monitoring (Uptime-kuma on ECS Fargate) is provisioned automatically after any module deploy, in a separate state, with a feature flag to disable
|
||||||
|
- Monitored endpoints come from the deployment's own outputs — no manual endpoint registration. The platform constructs the synthetic monitoring contract from what was just deployed
|
||||||
|
- Alert channels: Microsoft Teams webhook, email, SMS, and GitHub issues — all testing today
|
||||||
|
- The uptime URL is published to the developer via a PR comment so they don't hunt for it
|
||||||
|
- Roadmap: deeper observability bootstrap (dashboards, runbooks, on-call bindings) as first-class contract fields for prod/dr — planned
|
||||||
|
|
||||||
|
**Key takeaway:** Monitoring ships with the deploy, not after it. The feature flag lets teams with existing monitoring opt out cleanly.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A3 — The Road to the North Star
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Be explicit up front: this is **proposed phasing, not formally planned** — the phases are sequenced by dependency, not by calendar
|
||||||
|
- Phase 1 — Testing baseline (current): contract-driven deploys, zero-trust OIDC + ABAC, confidence signal, hash-chained evidence, encryption by default, safe decommission, uptime monitoring, platform-managed environments
|
||||||
|
- Phase 2 — Production readiness: HITL wiring for qa/prod/dr, all-runner OIDC, full regulatory ledger, environment self-service
|
||||||
|
- Phase 3 — Compliance & expansion: compliance milestone (GDPR, SOX, SOC2, DORA), additional engine adapters (OpenTofu, Pulumi, Kubernetes CRDs), deeper observability bootstrap
|
||||||
|
- Phase 4 — Agentic frontier: dynamic module creation from a contract (citizen-developer flow), pattern recognition that compounds value over time
|
||||||
|
- Each phase's items are gated on the prior phase's maturity — invite questions on any phase boundary
|
||||||
|
|
||||||
|
**Key takeaway:** A dependency-sequenced path from testing baseline to agentic frontier — proposed, not formally committed.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A4 — Testing vs. Planned (Full Inventory)
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Close on honesty — the platform delivers real, verifiable value today, and the roadmap is concrete, not aspirational hand-waving
|
||||||
|
- Walk the Testing column (11 capabilities) quickly — from contract-driven deploys to encryption by default to uptime monitoring. These work internally and are dev pilot-ready
|
||||||
|
- Walk the Planned column (9 capabilities) — be clear about what's not yet done: HITL wiring, full regulatory ledger, compliance milestone, environment self-service, dynamic module creation, additional engine adapters, deeper observability
|
||||||
|
- Two agentic items are flagged: dynamic module creation and pattern recognition — both involve AI agents or autonomous decision-making
|
||||||
|
- Invite questions on any "planned" item — each has a defined milestone and a clear reason it isn't shipped yet (usually an upstream dependency, not an engineering gap)
|
||||||
|
- Emphasize: 0 consumer adoption today — "Testing" means it works internally and is dev pilot-ready, not that it's released
|
||||||
|
|
||||||
|
**Key takeaway:** 11 capabilities testing today. 9 planned items on a concrete roadmap. Zero consumer adoption — yet.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A5 — Glossary
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is a reference slide — don't read it aloud, point to it as a takeaway reference for term definitions
|
||||||
|
- The terms most likely to come up in questions: OIDC (short-lived tokens), ABAC (tag-scoped access), CMK (per-stack encryption keys), RPO = 0 (synchronous evidence write)
|
||||||
|
- HITL is the human-attestation term for qa/prod/dr; NFR is the non-functional-requirements input to the confidence signal
|
||||||
|
- IR (Intermediate Representation) is the engine-agnostic stack definition between the contract and Terraform — the abstraction that makes the platform portable
|
||||||
|
|
||||||
|
**Key takeaway:** A shared vocabulary — keep it as a reference for follow-up questions.
|
||||||
@@ -0,0 +1,312 @@
|
|||||||
|
# How The Platform Works
|
||||||
|
|
||||||
|
> **Subtitle:** Agentic Cloud Delivery Platform
|
||||||
|
> **Audience:** Senior Leadership, CTO, Head of Cloud, Head of Infrastructure, Head of DevOps
|
||||||
|
> **Length:** ~15 minutes · 10 main + 6 appendix = 16 slides
|
||||||
|
> **Purpose:** Sell the platform's value to tech leadership — zero-trust, security, observability, auditability, and the shift from "operators guess" to "the platform computes safety."
|
||||||
|
> **Maturity framing:** "Testing" = works internally, dev pilot-ready. "Planned" = on the roadmap, not yet implemented. "Agentic" = involves AI agents or autonomous decision-making.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 1 — Title
|
||||||
|
|
||||||
|
# How The Platform Works
|
||||||
|
|
||||||
|
### Agentic Cloud Delivery Platform
|
||||||
|
|
||||||
|
> **Speaker notes:** Brief introduction — this deck explains *how* the platform works internally, not what the developer experience is (that's the companion deck). Set the frame: the platform is not a CI/CD tool — it's the organizational lever for shipping safely at the pace the business demands.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 2 — The Problem & The North Star
|
||||||
|
|
||||||
|
Software delivery scales with the **coordination surface around it**, not the engineering inside it. Most teams can write code; far fewer get the infrastructure right.
|
||||||
|
|
||||||
|
Four frictions slow every team:
|
||||||
|
|
||||||
|
- **Cognitive load** — authoring infrastructure correctly; the long tail of services inconsistent in security and observability.
|
||||||
|
- **Operational work** — promoting a change from "merged" to "running in production." Manual work that **scales with the system, not the change.**
|
||||||
|
- **Red tape** — tickets, approvals, and handoffs that scale with the organization. A merged change waits in a queue.
|
||||||
|
- **Scalability without increasing headcount** — throughput scales without linearly scaling platform engineers.
|
||||||
|
|
||||||
|
> Consumers **declare intent**; the platform delivers **safe production deployment** — automatically, safely, with a complete audit trail.
|
||||||
|
|
||||||
|
- A merged change progresses **without a platform engineer joining a thread or approving a ticket.**
|
||||||
|
- A **non-technical consumer** ships by declaring intent — no workflow, no config file, no infrastructure module.
|
||||||
|
- Every production change is **traceable to a human attestation and an immutable evidence stream.**
|
||||||
|
|
||||||
|
> **Speaker notes:** Open with the cost of the status quo. Every team that stands up its own pipeline, its own Terraform, its own review checklist is paying a tax that doesn't differentiate the business. The platform absorbs all four frictions — that is the value proposition in one sentence. Land the North Star quote: "declare intent → safe production deployment." The litmus test: if a platform engineer still has to touch a ticket for a dev→qa promotion, we haven't delivered the vision.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 3 — Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
Now that we know the problem, here's where ACDL fits — and where it doesn't.
|
||||||
|
|
||||||
|
- **Upstream is anything** — your IDE, an agentic SDLC, or a citizen developer vibe coding on a laptop. ACDL doesn't care how the contract was produced.
|
||||||
|
- **ACDL is infrastructure only** — it provisions and governs AWS resources. It does not build, test, or deploy your application code. That's upstream.
|
||||||
|
- **Not a general-purpose AI** — autonomy is narrow, scoped to delivery, bounded by strict policy envelopes.
|
||||||
|
- **Not a permissive delivery highway** — no escape hatches to bypass the confidence framework or human attestation requirements.
|
||||||
|
|
||||||
|
> **Speaker notes:** This slide gives leadership the framing they need. The platform is deliberately scoped — it is not trying to be everything. The sovereign boundary means the platform team owns delivery and infrastructure, not the upstream development process. The anti-goals are as important as the goals: they tell leadership what not to expect.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 4 — The Contract-Driven Model
|
||||||
|
|
||||||
|
The contract is the boundary between upstream and ACDL. It's all a consumer writes.
|
||||||
|
|
||||||
|
A single YAML contract — **module, environment, inputs**. The platform owns everything else.
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart LR
|
||||||
|
A["Consumer<br/>writes a contract"] --> B["Platform resolves,<br/>compiles, checks,<br/>deploys, records"]
|
||||||
|
B --> C["Resources running in AWS<br/>+ tamper-evident evidence"]
|
||||||
|
```
|
||||||
|
|
||||||
|
The contract names three things:
|
||||||
|
|
||||||
|
- **Which module** — a catalog of pre-built, security-reviewed building blocks (a static site, a microservice, a database, and more).
|
||||||
|
- **Which environment** — `dev`, `qa`, `prod`, or `dr`. The platform raises the safety bar automatically as the environment gets more sensitive.
|
||||||
|
- **Which inputs** — infrastructure values that vary per deployment (cpu, memory, port, desired_count).
|
||||||
|
- The consumer provides **no AWS account, no VPC, no state backend** — the platform owns the blast radius.
|
||||||
|
|
||||||
|
The consumer does **not** write infrastructure modules, workflow logic, or adapter code. They declare intent; the platform reconciles, provisions, and progresses.
|
||||||
|
|
||||||
|
> **Speaker notes:** Emphasize the asymmetry. The consumer's surface is intentionally tiny — a contract that fits on one screen. The platform's surface is large and opinionated. That asymmetry is what makes "declare intent, not execute operations" concrete. Note that the contract examples now show infrastructure inputs (cpu, memory, desired_count, port) — not a container image. The image is upstream; the platform governs infrastructure.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 5 — The End-to-End Flow
|
||||||
|
|
||||||
|
Once the contract is written, here's what the platform does with it — every time.
|
||||||
|
|
||||||
|
Every deployment runs the same stages, in the same order, with the same checks — no team-specific pipelines, no tribal runbooks.
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart TD
|
||||||
|
A["Consumer contract<br/>(module + environment + inputs)"] --> B["Validate contract<br/>against the schema"]
|
||||||
|
B --> C["Resolve to a target stack<br/>(expand the module's pattern)"]
|
||||||
|
C --> D["Security checks<br/>(before any infra is created)"]
|
||||||
|
D --> E["Infrastructure plan<br/>(platform compiles the stack)"]
|
||||||
|
E --> F["Policy checks<br/>(normalized results)"]
|
||||||
|
F --> G["Confidence signal<br/>(6 inputs → score + band)"]
|
||||||
|
G --> H["Evidence event<br/>(hash-chained, tamper-evident)"]
|
||||||
|
H --> I["Infrastructure apply<br/>(dev only — higher envs hold for attestation)"]
|
||||||
|
```
|
||||||
|
|
||||||
|
Two properties matter to leadership:
|
||||||
|
|
||||||
|
- **Security and policy checks run *before* any infrastructure is created** — not after the fact, not as a post-deployment audit.
|
||||||
|
- **Every stage produces a record** that feeds the confidence signal and the evidence stream. There is no "unchecked" path.
|
||||||
|
|
||||||
|
> **Speaker notes:** Walk left to right once. Don't dwell on internals — the point is that the flow is fixed, opinionated, and identical for every consumer. The two leadership-relevant beats are (1) checks before creation, (2) every stage is evidenced. The confidence signal (Slide 7) is where the "safety is computed" story lands.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 6 — Zero-Trust by Default
|
||||||
|
|
||||||
|
Before any infrastructure is created, here's how access is scoped.
|
||||||
|
|
||||||
|
Consumer repositories hold **no long-lived cloud credentials.** Ever.
|
||||||
|
|
||||||
|
- **Authentication is OIDC federation** between the platform runners and the cloud provider. Each job mints a short-lived token; no credential is stored in the consumer repo or in a runner secret. *(Testing on GitHub Actions runners; planned for all platform runners.)*
|
||||||
|
- **Authorization is attribute-based (ABAC), not role-based.** Two attribute classes scope every action:
|
||||||
|
- **Repository identity** — the role's trust policy binds to the exact consumer repo + branch that invoked the workflow.
|
||||||
|
- **Resource-creation attributes** — every resource is tagged with `acdl:owner=<consumer-repo>` and `acdl:contract=<contract-id>`. The session policy grants view/update/delete **only on resources whose tags match the calling repo.**
|
||||||
|
|
||||||
|
**The effect:** a consumer's pipeline can only touch the resources it created. Blast radius is contained to that consumer's own stack instances. One consumer can never touch another's resources, and the consumer cannot escape its own scope.
|
||||||
|
|
||||||
|
> **Speaker notes:** This is the slide for the Head of Cloud/Security. The key phrase is "blast radius contained to the consumer's own stack." Contrast with the common failure mode of shared CI roles that can touch any account resource. The static-key override exists for edge cases but is rotated daily on platform runners; it is never the default.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 7 — Safety is Computed, Not Assumed
|
||||||
|
|
||||||
|
Now let's look at how the platform decides whether a deployment is safe.
|
||||||
|
|
||||||
|
Every delivery action produces a **measurable, explainable confidence signal** — a weighted sum of observable facts, not a black box. *(Agentic.)*
|
||||||
|
|
||||||
|
- **Six weighted inputs** — policy conformance, validation, freshness, source provenance, history, and non-functional requirements (NFRs). The weights are **manually tuned**, the inputs are **observable**, and the breakdown is **auditable** — if a consumer asks "why 0.62?", the platform answers with a per-input breakdown.
|
||||||
|
- **Per-environment thresholds** that rise with sensitivity:
|
||||||
|
|
||||||
|
| Environment | Threshold | Who must attest |
|
||||||
|
|---|---|---|
|
||||||
|
| dev | ≥ 0.50 | No one — fully autonomous *(Testing)* |
|
||||||
|
| qa | ≥ 0.75 | QA *(Planned)* |
|
||||||
|
| prod | ≥ 0.90 | SRE *(Planned)* |
|
||||||
|
| dr | ≥ 0.95 | SRE + a disaster-recovery drill reference *(Planned)* |
|
||||||
|
|
||||||
|
- **A single critical policy finding hard-blocks the deployment**, regardless of every other input. Critical findings are not averaged away.
|
||||||
|
- **When the platform halts, it gives a measured reason** — a policy violation, an insufficient signal, a missing attestation — never an opaque, manual-debugging exercise.
|
||||||
|
|
||||||
|
> **Speaker notes:** This is the bet that separates this platform from "yet another CI/CD tool." Reliance on operator instinct or tenure is not a substitute. The signal is auditable; the thresholds are tunable by Infra & Ops + SRE jointly, and any override is itself a confidence-event in the audit stream. Leadership cares about this because it makes promotion decisions *reviewable*. The new confidence signal diagram makes the six inputs and the per-input breakdown visible — emphasize that the weights are manually tuned and the breakdown is auditable, not a black box.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 8 — Security by Construction
|
||||||
|
|
||||||
|
Beyond the confidence signal, security defaults are on by construction — not by opt-in.
|
||||||
|
|
||||||
|
Security defaults that **do not require a team to opt in.** Checks run on **every** deployment, normalized to a single schema regardless of which engine produced them. *(Testing.)*
|
||||||
|
|
||||||
|
- **Infrastructure-as-code policy** (Checkov) — secrets in plaintext, public ingress, IAM wildcards, KMS key references, **required tagging standards** (`acdl:owner`, `acdl:contract`, `acdl:environment`, `acdl:cost-center`). All run *before* infra is created.
|
||||||
|
- **Cloud security posture** (Wiz adapter) — translates cloud security findings into the same normalized record. *(Adapter testing; activates when a Wiz tenant is configured.)*
|
||||||
|
- **Kubernetes-native policy** (Kyverno adapter) — ready for the GitOps reconciler roadmap item. *(Adapter testing; inactive for Terraform-only stacks.)*
|
||||||
|
- **Encryption on every resource** — at-rest encryption is on by default for every primitive (S3, RDS, ECR, ECS, and more). *(Testing.)*
|
||||||
|
- **Per-stack customer-managed keys (CMKs)** — one key per deployment, 90-day rotation at creation, **no shared keys across stacks.** *(Testing.)*
|
||||||
|
- **Managed-key fallback with a loud warning** — standalone primitives fall back to cloud-managed keys only when no CMK is provided, and the platform warns explicitly. *(Testing.)*
|
||||||
|
- **Deletion protection on by default** — every resource has `prevent_destroy` on unless a consumer explicitly disables it via a documented feature flag. *(Testing.)*
|
||||||
|
- **Safe decommission** — a 2-step pipeline (disable protection → zero counts → destroy) with **two SRE human-attestation gates** and a **change-request validated against the platform CMDB** before any destructive action. *(Testing.)* Encryption keys enter a grace window (default 30 days) so encrypted data remains recoverable during decommission.
|
||||||
|
|
||||||
|
> **Speaker notes:** The phrase to land is "secure by default, not secure by effort." The selling point is *normalization* — we can add a new security tool without changing the confidence model or the evidence stream. For the Head of Security: tagging standards are enforced, not advisory — a missing `acdl:owner` tag fails the check, not a warning. The decommission flow is the counter-argument to "deletion protection makes cleanup impossible" — it's a deliberate, gated, two-approval path, not a lock with no key.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 9 — Accountability & Audit
|
||||||
|
|
||||||
|
Computed safety handles the gate. But humans still matter — here's how accountability works.
|
||||||
|
|
||||||
|
- **Dev is fully autonomous.** The confidence signal (≥ 0.50) is the only gate. Queue-based handoffs are eliminated from lower environments. *(Testing, Agentic.)*
|
||||||
|
- **qa, prod, and dr require deliberate human attestation** — not rubber stamps, but policy-mandated acts of accountability via protected deployment approvals. The approver reviews the contract, the planned Terraform changes, and the accumulated evidence. *(Planned.)*
|
||||||
|
- **QA attests to infrastructure readiness — the contract, the planned Terraform changes, and the accumulated evidence. QA does not review application code (that's upstream).**
|
||||||
|
- **Separation of duties is enforced** *(Planned)* — the person who approved the qa promotion **cannot** be the person who approves the prod promotion. The platform reads both identities from the outbox and **blocks** on a match, emitting a `SEPARATION_OF_DUTIES_VIOLATION` and routing a halt artifact to SRE on-call.
|
||||||
|
- **Timeout discipline** — 1 business day = warn + escalate; 2 business days = auto-freeze + re-submit. Rejection extends the audit chain; it does not tear it up.
|
||||||
|
|
||||||
|
Version control is a **coordination tool, not an evidentiary fortress.** True compliance requires an immutable, externally-stored ledger.
|
||||||
|
|
||||||
|
- **Every deployment writes a hash-chained evidence event** — each event links to the previous via a cryptographic hash. Tampering breaks the chain. *(Testing — the DynamoDB outbox.)*
|
||||||
|
- **Tiered storage design:** cold, tamper-proof source of truth (S3 Object Lock, compliance mode, 7-year retention) + a hot query index for fast lookup. *(Outbox tested; S3 Object Lock + JWS detached signatures are planned regulatory-ledger build-out.)*
|
||||||
|
- **RPO = 0** — the evidence write is synchronous; a deployment is not acknowledged until the evidence event is durably recorded.
|
||||||
|
- **Every production change is traceable to a human attestation** — the QA and prod approver identities are the only durable record outside the VCS's audit log, stored in the outbox keyed by contract.
|
||||||
|
|
||||||
|
> **Speaker notes:** The "lower environments autonomous, higher environments attested" tenet is the resolution to the classic "move fast vs. be safe" false dichotomy. Be honest: the separation-of-duties *mechanism* (CODEOWNERS routing, identity-distinctness check, the 8-concern attestation matrix) is designed and the dev path is wired; the qa/prod/dr wiring is on the roadmap. The new attestation flow diagram makes the human-in-the-loop path visible. Note the QA clarification: QA attests to infrastructure readiness — the contract, the plan, and the evidence — not application code. The audit trail is a byproduct of deployment, not a project. Note honestly that the full regulatory ledger (S3 Object Lock, JWS signatures, daily checkpoints) is planned; what ships today is the outbox + hash chain that makes every event tamper-evident and queryable. Badge reclassification: separation of duties = Planned (not "design tested"), dev autonomous = Testing, qa/prod/dr attestation = Planned.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 10 — The Vision Realized
|
||||||
|
|
||||||
|
Here's what success looks like when the North Star is reached.
|
||||||
|
|
||||||
|
- **Velocity without sacrificing safety.** Speed is in the ergonomics (a simple contract, a one-line `uses:`); safety is in the gates the consumer cannot bypass.
|
||||||
|
- **Security, observability, and compliance as platform defaults** — not per-team effort, not post-hoc remediation.
|
||||||
|
- **Auditability as a byproduct, not a project.** Every production change is traceable to a human attestation and a tamper-evident evidence event.
|
||||||
|
- **Blast radius contained by design.** Zero-trust OIDC + ABAC means a consumer can only touch its own tagged resources.
|
||||||
|
- **Infrastructure as a utility, not a craft.** Teams consume infrastructure, they don't maintain it.
|
||||||
|
- **A path to the citizen developer.** The same safety envelope that serves a senior engineer will serve a non-technical consumer. *(Agentic.)*
|
||||||
|
|
||||||
|
> **Speaker notes:** Close on the strategic frame. The platform is not "a CI/CD tool," it's the organizational lever for shipping safely at the pace the business demands. The investment is in the abstraction, not the tool. Ship safely at the pace the business demands, with the security and audit posture the regulators require.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Appendix — Table of Contents
|
||||||
|
|
||||||
|
For deep dives — these slides cover details omitted from the main 10.
|
||||||
|
|
||||||
|
**Contents:**
|
||||||
|
|
||||||
|
1. Platform-Managed Environments (detail)
|
||||||
|
2. Observability Built In (detail)
|
||||||
|
3. The Road to the North Star (phased roadmap)
|
||||||
|
4. Testing vs. Planned (full inventory)
|
||||||
|
5. Glossary
|
||||||
|
|
||||||
|
> **Speaker notes:** These are deep-dive slides for follow-up questions. Don't walk them in the main 15-minute talk — pull them up when an audience member wants detail on a specific topic.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A1 — Platform-Managed Environments
|
||||||
|
|
||||||
|
A consumer provides **no AWS account, no VPC, no subnet, no state backend, no runner key.** The platform owns the blast radius.
|
||||||
|
|
||||||
|
A named environment is a platform-owned bundle of:
|
||||||
|
|
||||||
|
- An AWS account (or a scoped partition of one).
|
||||||
|
- A network (VPC + subnets).
|
||||||
|
- A state backend (S3 + DynamoDB for infrastructure state + locking).
|
||||||
|
- An IAM role surfaced to the consumer via ABAC, scoped to the consumer's repository identity and resource tags.
|
||||||
|
|
||||||
|
The consumer selects an environment **by name** in their contract (`environment: dev`). The platform resolves the name to the underlying account/network/state/role at run time. **The consumer never sees the raw credentials.**
|
||||||
|
|
||||||
|
**Friendly onboarding:** the first run detects no environment and emits a guided prompt (not an opaque failure) telling the consumer what the platform will provision and how to request it. *(Testing.)* **Self-service environment provisioning is planned.**
|
||||||
|
|
||||||
|
> **Speaker notes:** For the Head of Cloud: this is the governance story. The platform team owns the accounts, the network design, the state hygiene. Consumers can't drift into misconfigured state backends or over-permissioned roles because they never touch them. The onboarding prompt matters — first impressions of a platform are made when it fails for the first time.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A2 — Observability Built In
|
||||||
|
|
||||||
|
Monitoring is **a platform default, not a per-team project.** *(Testing.)*
|
||||||
|
|
||||||
|
- **Uptime monitoring deployed automatically with every stack** — a dedicated monitoring instance (Uptime-kuma on ECS Fargate) is provisioned after any module deploy, in a separate state, with a feature flag to disable.
|
||||||
|
- **Monitored endpoints passed from the deployment's own outputs** — the platform constructs a synthetic monitoring contract from what was just deployed. No manual endpoint registration.
|
||||||
|
- **Alert channels:** Microsoft Teams webhook, email, SMS, and GitHub issues. *(Testing.)*
|
||||||
|
- **The uptime URL is published to the developer** via a PR comment — they don't hunt for it.
|
||||||
|
- **Roadmap:** deeper observability bootstrap (dashboards, runbooks, on-call bindings) as first-class contract fields for prod/dr. *(Planned.)*
|
||||||
|
|
||||||
|
> **Speaker notes:** The Head of DevOps cares about this. The framing: "you don't deploy a service and *then* remember to set up monitoring — the platform does it as part of the deploy." The feature flag means teams with existing monitoring (e.g. Datadog) can opt out cleanly.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A3 — The Road to the North Star
|
||||||
|
|
||||||
|
*Proposed phasing — not formally planned.*
|
||||||
|
|
||||||
|
A phased roadmap from the current Testing baseline to the full North Star:
|
||||||
|
|
||||||
|
- **Phase 1 — Testing baseline (current):** contract-driven deploys, zero-trust OIDC + ABAC on GitHub Actions, confidence signal gating, hash-chained evidence, encryption by default, deletion protection + safe decommission, uptime monitoring, platform-managed environments.
|
||||||
|
- **Phase 2 — Production readiness:** HITL wiring for qa/prod/dr, all-runner OIDC, full regulatory ledger (S3 Object Lock + JWS signatures + daily checkpoints), environment self-service.
|
||||||
|
- **Phase 3 — Compliance & expansion:** compliance milestone (GDPR, SOX, SOC2, DORA extension points), additional engine adapters (OpenTofu, Pulumi, Kubernetes CRDs), deeper observability bootstrap.
|
||||||
|
- **Phase 4 — Agentic frontier:** dynamic module creation from a contract (the agentic citizen-developer composition mechanism), pattern recognition that compounds value over time.
|
||||||
|
|
||||||
|
> **Speaker notes:** Be clear with leadership: this is a proposed phasing, not a formally committed plan. The phases are sequenced by dependency, not by calendar — each phase's items are gated on the prior phase's maturity. Invite questions on any phase boundary.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A4 — Testing vs. Planned (Full Inventory)
|
||||||
|
|
||||||
|
**Testing** (works internally, dev pilot-ready) — 11 capabilities:
|
||||||
|
|
||||||
|
- Contract-driven deploys with a versioned reusable workflow.
|
||||||
|
- Module catalog (primitives + modules) with validated examples.
|
||||||
|
- Zero-trust OIDC + ABAC on GitHub Actions runners.
|
||||||
|
- Security + policy checks before infra creation (Checkov; Wiz + Kyverno adapters ready).
|
||||||
|
- Confidence signal (6 inputs, per-env thresholds) gating promotion. *(Agentic.)*
|
||||||
|
- Hash-chained, tamper-evident evidence outbox (RPO = 0).
|
||||||
|
- Encryption by default + per-stack customer-managed keys.
|
||||||
|
- Deletion protection by default + safe decommission with SRE gates + CMDB validation.
|
||||||
|
- Uptime monitoring deployed automatically with every stack.
|
||||||
|
- Platform-managed environments + friendly onboarding.
|
||||||
|
- Engine-agnostic core (1 adapter: Terraform) + VCS-agnostic ingestion (GitHub + Gitea).
|
||||||
|
|
||||||
|
**Planned** (on the roadmap, not yet implemented) — 9 capabilities:
|
||||||
|
|
||||||
|
- Real OIDC federation on all platform runners (Gitea Actions OIDC pending an upstream merge).
|
||||||
|
- HITL wiring for qa / prod / dr environments (design shipped; wiring is next).
|
||||||
|
- Full regulatory ledger: S3 Object Lock (7-yr compliance mode) + JWS detached signatures + daily checkpoints.
|
||||||
|
- Compliance milestone: per-module extension points for GDPR, SOX, SOC2, DORA.
|
||||||
|
- Environment self-service (a consumer-facing flow to request and provision a new environment).
|
||||||
|
- Dynamic module creation from a contract (the agentic "citizen developer" composition mechanism). *(Agentic.)*
|
||||||
|
- Pattern recognition compounds value over time. *(Agentic.)*
|
||||||
|
- Additional engine adapters (OpenTofu, Pulumi, Kubernetes CRDs).
|
||||||
|
- Deeper observability bootstrap (dashboards, runbooks, on-call bindings).
|
||||||
|
|
||||||
|
> **Speaker notes:** Close on honesty. The platform delivers real, verifiable value today — 11 capabilities that work internally. The roadmap is concrete, not aspirational hand-waving — 9 planned items, each with a defined milestone and a clear reason it isn't shipped yet (usually an upstream dependency, not an engineering gap). Emphasize: 0 consumer adoption today — "Testing" means it works internally and is dev pilot-ready, not that it's released.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A5 — Glossary
|
||||||
|
|
||||||
|
| Term | Meaning |
|
||||||
|
|---|---|
|
||||||
|
| **OIDC** | OpenID Connect — federation protocol for short-lived tokens, no long-lived credentials |
|
||||||
|
| **ABAC** | Attribute-Based Access Control — access scoped by resource tags + repo identity, not roles |
|
||||||
|
| **CMK** | Customer-Managed Key — per-stack encryption key, 90-day rotation, no shared keys |
|
||||||
|
| **CMDB** | Configuration Management Database — validates change requests for decommission |
|
||||||
|
| **RPO** | Recovery Point Objective — RPO = 0 means evidence is written synchronously, no data loss |
|
||||||
|
| **HITL** | Human-in-the-Loop — deliberate human attestation required for qa/prod/dr environments |
|
||||||
|
| **VCS** | Version Control System — the git hosting platform (GitHub, Gitea, GitLab) |
|
||||||
|
| **NFR** | Non-Functional Requirement — encryption, tagging, observability standards |
|
||||||
|
| **IR** | Intermediate Representation — the engine-agnostic stack definition between contract and Terraform |
|
||||||
|
|
||||||
|
> **Speaker notes:** Use this slide as a reference when the audience asks for term definitions. Don't read it aloud — point to it as a takeaway reference.
|
||||||
@@ -0,0 +1,325 @@
|
|||||||
|
---
|
||||||
|
marp: true
|
||||||
|
theme: default
|
||||||
|
paginate: true
|
||||||
|
size: 16x9
|
||||||
|
header: "The Developer Experience"
|
||||||
|
footer: "Internal"
|
||||||
|
style: |
|
||||||
|
section {
|
||||||
|
font-family: "Akkurat Pro", "Helvetica Neue", "Arial", sans-serif;
|
||||||
|
font-size: 22px;
|
||||||
|
color: #1B1B1B;
|
||||||
|
}
|
||||||
|
h1 { color: #D6002A; font-size: 34px; margin-bottom: 0.3em; }
|
||||||
|
h2 { color: #D6002A; font-size: 26px; margin-bottom: 0.2em; }
|
||||||
|
section.title { background: #1B1B1B; color: #fff; border-top: 8px solid #D6002A; }
|
||||||
|
section.title h1 { color: #fff; }
|
||||||
|
table { font-size: 18px; width: 100%; }
|
||||||
|
th { background: #F0F0F0; }
|
||||||
|
blockquote { border-left: 4px solid #D6002A; color: #2E2E2E; font-size: 20px; }
|
||||||
|
pre { font-size: 14px; line-height: 1.3; }
|
||||||
|
code { font-size: 14px; }
|
||||||
|
img { display: block; margin: 0 auto; max-height: 280px; }
|
||||||
|
em.story { color: #6B7280; font-size: 16px; font-style: italic; }
|
||||||
|
.badge {
|
||||||
|
display: inline-block; padding: 2px 8px; border-radius: 4px;
|
||||||
|
font-size: 14px; font-weight: 600;
|
||||||
|
}
|
||||||
|
.testing { background: #DBEAFE; color: #1E3A5F; }
|
||||||
|
.planned { background: #fef3c7; color: #78350f; }
|
||||||
|
.agentic { background: #EDE9FE; color: #4C1D95; }
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# The Developer Experience
|
||||||
|
|
||||||
|
### Agentic Cloud Delivery Platform
|
||||||
|
|
||||||
|
<style>
|
||||||
|
section.title h1 { font-size: 44px; margin-bottom: 0.1em; }
|
||||||
|
section.title h3 { color: #F0F0F0; font-weight: 400; font-size: 22px; margin-top: 0; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
<em class="story">Story beat: Here's who uses the platform and where the boundary is.</em>
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- **Technical developer** — owns app code + a contract + a thin CI definition
|
||||||
|
- **Citizen developer** — declares intent in plain language; an AI agent produces a contract that passes the **same** safety envelope <span class="badge agentic">Agentic</span>
|
||||||
|
- **Upstream is anything** — your IDE, an agentic SDLC, or vibe coding on a laptop. ACDL doesn't care how the contract was produced
|
||||||
|
- **ACDL is infrastructure only** — it provisions and governs AWS resources. Application deployment is upstream
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# The Contract — The Entire Consumer Surface
|
||||||
|
|
||||||
|
<em class="story">Story beat: Now let's look at what a consumer actually writes — it's tiny.</em>
|
||||||
|
|
||||||
|
Three things. That is the entire consumer-side surface.
|
||||||
|
|
||||||
|
<img src="assets/png/developer-experience-02-what-dev-does.png" style="float: right; width: 38%; margin-left: 20px; margin-bottom: 10px;" />
|
||||||
|
|
||||||
|
- **1. App code** — the consumer's service, at the top level of the repo
|
||||||
|
- **2. A contract** — a single YAML file: module, environment, inputs
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.6
|
||||||
|
module: microservice
|
||||||
|
environment: dev
|
||||||
|
inputs:
|
||||||
|
cpu: 256
|
||||||
|
memory: 512
|
||||||
|
desired_count: 2
|
||||||
|
port: 8080
|
||||||
|
```
|
||||||
|
|
||||||
|
- **3. A one-line CI definition** — a thin `uses:` wrapper pointing at a versioned platform workflow
|
||||||
|
- The developer does **not**: write infrastructure modules, clone the platform repo, hold cloud credentials, or maintain a state backend
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# The Developer Feedback Loop
|
||||||
|
|
||||||
|
<em class="story">Story beat: Once you push, here's what you see — in real time, in your own logs.</em>
|
||||||
|
|
||||||
|
Developers see **what the platform is doing**, in real time. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Streamed output by default** — the infrastructure plan, policy-check results, and each check record flow to stdout
|
||||||
|
- **PR comments after every successful pipeline stage** — a developer always knows where they stand without refreshing a dashboard
|
||||||
|
- **Clear, explainable halt reasons** — a policy violation, an insufficient confidence signal, or a missing attestation. **Never an opaque debugging exercise.**
|
||||||
|
- **Connection strings posted as PR comments** — human-readable, no hunting
|
||||||
|
- **Runtime secrets in encrypted Parameter Store** — KMS-encrypted, namespaced, **no raw secrets in logs**
|
||||||
|
- **Errors become GitHub issues, automatically** — a failed deploy opens an issue on the platform repo
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Versioned, Predictable Releases
|
||||||
|
|
||||||
|
<em class="story">Story beat: You control when you absorb platform improvements — no surprise upgrades.</em>
|
||||||
|
|
||||||
|
Consumers control **when** they absorb platform improvements. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Floating MAJOR + MINOR tags** (e.g. `@v1.6`) — a consumer automatically receives patch updates within the line
|
||||||
|
- **Semantic versioning with a clear contract:** interface → MAJOR, behavior → MINOR, lifecycle → PATCH
|
||||||
|
- **A consumer can pin to an exact version** for maximum stability, or float on MAJOR only (`@v1`) to absorb new features on their own cadence
|
||||||
|
- **Unversioned references (`@main`, bare) are discouraged** — the versioned tag is the only immutability lever
|
||||||
|
- **Automated release job** computes the next semver on merge to main, creates the tag, and updates the floating tags
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Friendly Onboarding
|
||||||
|
|
||||||
|
<em class="story">Story beat: First impressions matter — the platform fails gracefully, not opaquely.</em>
|
||||||
|
|
||||||
|
First impressions of a platform are made **when it fails for the first time.** The platform fails gracefully. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
When no environment is bound, the platform emits a **user-friendly onboarding prompt** instead of failing opaquely:
|
||||||
|
|
||||||
|
1. That no environment is bound to their repo yet
|
||||||
|
2. What the platform will provision on their behalf (account, network, state, role)
|
||||||
|
3. The expected turnaround for the platform team to grant the environment
|
||||||
|
4. How to request an environment
|
||||||
|
|
||||||
|
The pipeline then **exits without attempting a deployment** — no partial state, no confusing errors.
|
||||||
|
|
||||||
|
<span class="badge planned">Citizen developer onboarding path: planned</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Safe Promotion Path
|
||||||
|
|
||||||
|
<em class="story">Story beat: Promotion is a workflow choice, not a contract edit — and the bar rises automatically.</em>
|
||||||
|
|
||||||
|
The contract is environment-agnostic. The platform raises the bar automatically.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
<table style="width: 100%; border: none;">
|
||||||
|
<tr>
|
||||||
|
<td style="width: 50%; vertical-align: top; border: none; padding-right: 12px;">
|
||||||
|
|
||||||
|
**Approach A — One contract, one job per environment.** Environment passed by each job.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
dev:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract.yaml, environment: dev }
|
||||||
|
qa:
|
||||||
|
needs: dev
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract.yaml, environment: qa }
|
||||||
|
```
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td style="width: 50%; vertical-align: top; border: none; padding-left: 12px;">
|
||||||
|
|
||||||
|
**Approach B — Environment-specific contracts.** When inputs differ per environment.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
dev:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract-dev.yaml }
|
||||||
|
qa:
|
||||||
|
needs: dev
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract-qa.yaml }
|
||||||
|
```
|
||||||
|
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<style>
|
||||||
|
section { font-size: 16px; }
|
||||||
|
pre { font-size: 10px; line-height: 1.2; }
|
||||||
|
code { font-size: 10px; }
|
||||||
|
td { font-size: 14px; }
|
||||||
|
</style>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Safe Decommission
|
||||||
|
|
||||||
|
<em class="story">Story beat: Tearing down is as deliberate as deploying — and just as gated.</em>
|
||||||
|
|
||||||
|
Tearing down a stack is **as deliberate as deploying one.** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.8
|
||||||
|
with:
|
||||||
|
contract: .acdl/contract.yaml
|
||||||
|
mode: decommission
|
||||||
|
changeRequestId: "CHG0678912"
|
||||||
|
```
|
||||||
|
|
||||||
|
A 2-step pipeline with **two SRE human-attestation gates**:
|
||||||
|
|
||||||
|
1. **Validate the change request** — the platform queries the CMDB; the CR must be `approved` and match the consumer repo
|
||||||
|
2. **Disable deletion protection** → **SRE approves** → **Zero all counts + destroy** → **a second SRE approves**
|
||||||
|
|
||||||
|
The per-stack encryption key enters a **grace window** (default 30 days) so encrypted data remains recoverable.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# Self-Service Module Catalog
|
||||||
|
|
||||||
|
<em class="story">Story beat: You don't author infrastructure — you pick from pre-built, security-reviewed building blocks.</em>
|
||||||
|
|
||||||
|
Developers pick from **pre-built, security-reviewed building blocks.** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Primitives** — single-purpose resources (S3, VPC, ECS, IAM, load balancer, container registry, CloudFront, WAF, RDS), each with documented inputs/outputs, usage, compliance extension points, and versioning
|
||||||
|
- **Modules** — composed patterns (a static site with CDN + WAF; a microservice with VPC + ECS + load balancer + registry)
|
||||||
|
- **Validated examples per module** — `simple.yaml` + `complex.yaml` + variation files, validated against the contract schema in CI. Examples cannot drift from the schema silently
|
||||||
|
- **Auto-promotion of patterns** — auto-promoted to the catalog after 3 observed usages <span class="badge planned">Planned</span> <span class="badge agentic">Agentic</span>
|
||||||
|
- **Compliance extension points** — each module lists where GDPR, SOX, SOC2, DORA controls will wire in <span class="badge planned">Planned</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# The Desired Outcomes
|
||||||
|
|
||||||
|
<em class="story">Story beat: Here's what this delivers to the organization.</em>
|
||||||
|
|
||||||
|
- **Velocity without sacrificing safety.** Speed is in the ergonomics (a simple contract, a one-line `uses:`); safety is in the gates the consumer cannot bypass.
|
||||||
|
- **Security, observability, and compliance as platform defaults** — not per-team effort, not post-hoc remediation.
|
||||||
|
- **Auditability as a byproduct, not a project.** Every production change is traceable to a human attestation and a tamper-evident evidence event.
|
||||||
|
- **Blast radius contained by design.** Zero-trust OIDC + ABAC means a consumer can only touch its own tagged resources.
|
||||||
|
- **The bottleneck moves off the platform team's ticket queue.** A merged change progresses through lower environments without a platform engineer joining a thread.
|
||||||
|
- **Infrastructure as a utility, not a craft.** Teams consume infrastructure, they don't maintain it — and the platform compounds value over time by learning from recurring patterns.
|
||||||
|
- **A path to the citizen developer.** The same safety envelope that serves a senior engineer will serve a non-technical consumer. <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# Appendix
|
||||||
|
|
||||||
|
<em class="story">For deep dives — these slides cover details omitted from the main 10.</em>
|
||||||
|
|
||||||
|
**Contents:**
|
||||||
|
|
||||||
|
1. The Citizen Developer Experience (full)
|
||||||
|
2. No Platform Code, No Cloning (detail)
|
||||||
|
3. Local Reproducibility (detail)
|
||||||
|
4. The Road to the North Star (phased roadmap)
|
||||||
|
5. Glossary
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A1 — The Citizen Developer Experience
|
||||||
|
|
||||||
|
A non-technical consumer ships a production deployment **by declaring intent** — without authoring a workflow, a configuration file, or an infrastructure module.
|
||||||
|
|
||||||
|
- The consumer opens an issue describing what they need (e.g. "a web API for the pricing service")
|
||||||
|
- An AI agent maps the intent to a contract referencing a module from the **reviewed skill catalog**
|
||||||
|
- The contract enters the **same pipeline** and must clear the **same confidence gate** before promotion
|
||||||
|
|
||||||
|
**Guardrails that make this safe:**
|
||||||
|
|
||||||
|
- Skills are **versioned, signed, and reviewed for sensitive data before release** (Infra & Ops owns the review)
|
||||||
|
- Agents are **stateless** — all state lives in the platform; the platform trusts and **always verifies**
|
||||||
|
- The agent's trace and submission confidence are captured in the contract for review
|
||||||
|
|
||||||
|
<span class="badge planned">Skill catalog + real agent runtime: planned</span> <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A2 — No Platform Code, No Cloning
|
||||||
|
|
||||||
|
Consumers `uses:` a **versioned** central workflow. The platform fetches itself at run time. The consumer **never touches platform internals.**
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
- The consumer's CI definition is a thin wrapper — one `uses:` line
|
||||||
|
- The runner checks out the consumer repo, then checks out the platform repo into the workspace
|
||||||
|
- The platform installs its own runtime dependencies — the consumer installs nothing
|
||||||
|
- When the platform ships a fix, every consumer on a floating tag gets it on their next run
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A3 — Local Reproducibility
|
||||||
|
|
||||||
|
The entire CI pipeline runs **from the shell**, not just in CI. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- `scripts/run_ci.sh` mirrors the CI pipeline locally — the same three stages (lint → test → check-only) in sequence
|
||||||
|
- `scripts/run_platform.sh --check-only` runs the platform **offline** — no AWS, no policy engine, no outbox required. Validates a contract end-to-end before pushing
|
||||||
|
- `--plan-only` runs through the infrastructure plan without applying
|
||||||
|
- The CI and deploy pipelines are defined by **declarative contracts** (YAML instances validated against JSON Schemas) — a single source of truth that both workflows implement
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
<!-- _class: title -->
|
||||||
|
<!-- _paginate: false -->
|
||||||
|
|
||||||
|
# A4 — The Road to the North Star
|
||||||
|
|
||||||
|
*Proposed phasing — not formally planned.*
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# A5 — Glossary
|
||||||
|
|
||||||
|
| Term | Meaning |
|
||||||
|
|---|---|
|
||||||
|
| **OIDC** | OpenID Connect — federation protocol for short-lived tokens, no long-lived credentials |
|
||||||
|
| **ABAC** | Attribute-Based Access Control — access scoped by resource tags + repo identity, not roles |
|
||||||
|
| **CMK** | Customer-Managed Key — per-stack encryption key, 90-day rotation, no shared keys |
|
||||||
|
| **CMDB** | Configuration Management Database — validates change requests for decommission |
|
||||||
|
| **RPO** | Recovery Point Objective — RPO = 0 means evidence is written synchronously, no data loss |
|
||||||
|
| **HITL** | Human-in-the-Loop — deliberate human attestation required for qa/prod/dr environments |
|
||||||
|
| **VCS** | Version Control System — the git hosting platform (GitHub, Gitea, GitLab) |
|
||||||
|
| **NFR** | Non-Functional Requirement — encryption, tagging, observability standards |
|
||||||
@@ -0,0 +1,215 @@
|
|||||||
|
# The Developer Experience — Talking Points
|
||||||
|
|
||||||
|
> **Companion to:** `the-developer-experience-marp.md` (10 main + 6 appendix = 16 slides)
|
||||||
|
> **Content source:** `the-developer-experience.md` (full source of truth with speaker notes)
|
||||||
|
> **Purpose:** Presenter-ready cues — 3-6 talking points per slide + the one key takeaway the audience should remember.
|
||||||
|
> **Audience:** Senior Leadership — CTO, Head of Cloud, Head of Infrastructure, Head of DevOps
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 1 — Title
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Brief introduction — this deck covers *who uses the platform and how fast/safe they ship*, not the internal mechanics (that's the companion deck)
|
||||||
|
- Set the frame: velocity without sacrificing safety, and security/observability/compliance as platform defaults rather than per-team effort
|
||||||
|
|
||||||
|
**Key takeaway:** The consumer surface is intentionally tiny. The platform's surface is large and opinionated.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 2 — Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is the scope-boundary slide — here's who uses the platform, and here's where ACDL's responsibility starts and stops
|
||||||
|
- Two consumer paths converge on the same contract: **technical** developer writes the contract directly; **citizen** developer declares intent and an AI agent produces a contract that passes the same safety envelope
|
||||||
|
- Upstream is anything — your IDE, an agentic SDLC, or vibe coding on a laptop. ACDL doesn't care how the contract was produced
|
||||||
|
- ACDL is infrastructure only — it provisions and governs AWS resources. Application deployment is upstream of the contract
|
||||||
|
- The two surfaces are *parallel*, not a progression. A citizen developer doesn't "graduate" to the developer surface. There is no "citizen developer mode" with weaker checks
|
||||||
|
|
||||||
|
**Key takeaway:** Two consumer paths, one safety envelope. ACDL is infra only — anything upstream is fair game.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 3 — The Contract — The Entire Consumer Surface
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Hold this slide — the audience should sit with how small the consumer surface is. Three things: app code, a contract, a one-line CI definition
|
||||||
|
- The contract is a single YAML file: module, environment, inputs. That's the entire consumer-facing interface to production
|
||||||
|
- The contract example now shows **infrastructure inputs** (cpu, memory, desired_count, port) — not an `image:` field. The consumer declares capacity and shape; the platform resolves the rest
|
||||||
|
- Walk the "does not" list quickly — no infrastructure modules, no platform repo cloning, no cloud credentials, no state backends. Every item is a category of toil the platform removes
|
||||||
|
- For the Head of DevOps: this is the lever for throughput — the bottleneck moves off the platform team's ticket queue
|
||||||
|
|
||||||
|
**Key takeaway:** Three things. That's the entire consumer-side surface. Everything else is the platform's job.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 4 — The Developer Feedback Loop
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This directly answers "but developers hate platforms that hide what they're doing" — the platform is opinionated about *what* runs, not *opaque* about *that* it runs
|
||||||
|
- Streamed output by default — the plan, policy results, and each check record flow to stdout
|
||||||
|
- PR comments after every successful pipeline stage — a developer always knows where they stand without refreshing a dashboard
|
||||||
|
- Connection strings posted as PR comments — human-readable, no hunting. Runtime secrets go to encrypted Parameter Store (KMS-encrypted, namespaced), never to logs
|
||||||
|
- The "errors become GitHub issues" point is a DX win that also helps the platform team — every consumer failure is a tracked, queryable artifact, not a lost log line
|
||||||
|
- Clear, explainable halt reasons — a policy violation, an insufficient confidence signal, or a missing attestation. Never an opaque debugging exercise
|
||||||
|
|
||||||
|
**Key takeaway:** The platform closes the feedback loop — streamed output, PR comments, clear halt reasons, no secrets in logs.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 5 — Versioned, Predictable Releases
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This is the "no surprise upgrades" story — consumers aren't forced to chase the platform, and the platform isn't forced to support N forks of every workflow
|
||||||
|
- Floating MAJOR + MINOR tags (e.g. `@v1.6`) — a consumer automatically receives patch updates within the line. Pin to exact version for stability, or float on MAJOR only for new features
|
||||||
|
- Semantic versioning with a clear contract: interface → MAJOR, behavior → MINOR, lifecycle → PATCH
|
||||||
|
- Unversioned references (`@main`, bare) are discouraged — the versioned tag is the only immutability lever a consumer has
|
||||||
|
- The automated release job computes the next semver on merge to main, creates the tag, and updates the floating tags — no manual release process
|
||||||
|
|
||||||
|
**Key takeaway:** Consumers control when they absorb platform improvements. No surprise upgrades.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 6 — Friendly Onboarding
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- This looks like a small thing; it's actually a cultural one — the platform's posture is "help me get started," not "you should have known"
|
||||||
|
- First impressions of a platform are made when it fails for the first time. The platform fails gracefully with a guided prompt, not an opaque error
|
||||||
|
- The prompt tells the consumer: what's missing, what the platform will provision, the expected turnaround, and how to request an environment
|
||||||
|
- The pipeline exits without attempting a deployment — no partial state, no confusing errors
|
||||||
|
- Be honest: the citizen developer onboarding path is planned, not yet shipped
|
||||||
|
|
||||||
|
**Key takeaway:** The platform fails gracefully. First impressions drive adoption — platforms that fail opaquely get routed around.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 7 — Safe Promotion Path
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Promotion is a workflow choice, not a contract mutation — this matters because it means a promotion can be reviewed as a *diff in the workflow*, not as a rewritten contract
|
||||||
|
- The new promotion journey diagram shows the rising bar: dev (autonomous) → qa (QA attests) → prod (SRE attests) → dr (SRE attests + DR drill)
|
||||||
|
- Approach A (one contract, environment passed by the job) keeps the single source of truth — the contract never changes
|
||||||
|
- Approach B (environment-specific contracts) lets teams whose inputs genuinely vary keep that variation explicit and reviewable
|
||||||
|
- The rising bar is annotated with maturity: **dev = Testing** (works internally, pilot-ready); **qa/prod/dr = Planned** (on the roadmap). Be honest about that split
|
||||||
|
- Separation of duties is enforced — the QA approver cannot be the prod approver. No staging environment — the design deliberately removes the "staging is basically prod but not really" anti-pattern
|
||||||
|
|
||||||
|
**Key takeaway:** Change the environment field, not the contract. The platform raises the bar automatically. The consumer can't bypass the gates.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 8 — Safe Decommission
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The counter-argument to "deletion protection makes cleanup impossible" — decommission is a first-class, gated, two-approval flow, not a lock with no key
|
||||||
|
- The change request must be `approved` in the CMDB and match the consumer repo — no CR, no decommission
|
||||||
|
- Two SRE human-attestation gates: one to disable deletion protection, a second to zero counts and destroy
|
||||||
|
- The per-stack encryption key enters a 30-day grace window so encrypted data remains recoverable — the key is permanently deleted only after the window expires
|
||||||
|
- For the Head of Infrastructure: the CMDB validation means decommission is auditable, not just possible
|
||||||
|
|
||||||
|
**Key takeaway:** Tearing down is as gated as deploying. Two SRE approvals, CMDB-validated change request, 30-day key grace window.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 9 — Self-Service Module Catalog
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The catalog is what makes "declare intent" practical — you can only declare a module that exists
|
||||||
|
- Primitives are single-purpose resources (S3, VPC, ECS, IAM, ALB, ECR, CloudFront, WAF, RDS) — each with documented inputs/outputs, usage, compliance extension points, and versioning
|
||||||
|
- Modules are composed patterns (a static site with CDN + WAF; a microservice with VPC + ECS + ALB + registry) — one well-reviewed module serves every consumer
|
||||||
|
- Validated examples per module — `simple.yaml` + `complex.yaml` + variation files, validated against the contract schema in CI. Examples cannot drift from the schema silently
|
||||||
|
- For leadership: the catalog is the leverage — a fix to a module serves every consumer on the next run. This is the compounding asset
|
||||||
|
- Auto-promotion of patterns (after 3 observed usages) and compliance extension points (GDPR, SOX, SOC2, DORA) are planned
|
||||||
|
|
||||||
|
**Key takeaway:** The catalog is the compounding asset. One well-reviewed module serves every consumer. A fix serves everyone on the next run.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 10 — The Desired Outcomes
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Close on the strategic frame — the platform is not "a CI/CD tool," it's the organizational lever for shipping safely at the pace the business demands
|
||||||
|
- Velocity without sacrificing safety: speed is in the ergonomics (a simple contract, a one-line `uses:`), safety is in the gates the consumer cannot bypass
|
||||||
|
- Security, observability, and compliance as platform defaults — not per-team effort, not post-hoc remediation. Encryption, deletion protection, uptime monitoring, policy checks, and evidence are on by construction
|
||||||
|
- Auditability as a byproduct, not a project — every production change is traceable to a human attestation and a tamper-evident evidence event
|
||||||
|
- The bottleneck moves off the platform team's ticket queue — a merged change progresses through lower environments without a platform engineer joining a thread
|
||||||
|
- Infrastructure as a utility, not a craft — teams consume, they don't maintain. The platform compounds value over time by learning from recurring patterns
|
||||||
|
- The path to the citizen developer — the same safety envelope that serves a senior engineer will serve a non-technical consumer. Expanding who can ship safely without lowering the bar
|
||||||
|
|
||||||
|
**Key takeaway:** Velocity without sacrificing safety. Security and auditability as byproducts. The bottleneck moves off the platform team's queue.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Appendix — Contents
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- These are backup slides for Q&A — don't walk through them in the main talk unless time permits
|
||||||
|
- Use A1 when asked about the citizen developer detail; A2 for the no-cloning mechanism; A3 for local reproducibility; A4 for the roadmap; A5 for term definitions
|
||||||
|
|
||||||
|
**Key takeaway:** The appendix is the deep-dive drawer. Pull a slide when the audience asks for the detail behind a main-slide claim.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A1 — The Citizen Developer Experience
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The framing is **vibe coding on a laptop** — the consumer describes what they want in plain language; an AI agent turns that into a contract the platform treats identically to a senior engineer's
|
||||||
|
- The consumer opens an issue (e.g. "a web API for the pricing service"); an AI agent maps the intent to a contract referencing a module from the reviewed skill catalog
|
||||||
|
- The contract enters the same pipeline and must clear the same confidence gate — no weaker mode
|
||||||
|
- Guardrails: skills are versioned, signed, and reviewed for sensitive data before release (Infra & Ops owns the review); agents are stateless — all state lives in the platform; the platform trusts and always verifies
|
||||||
|
- The agent's trace and submission confidence are captured in the contract (`profile: agentic`), so a reviewer can see how the contract was produced
|
||||||
|
- Be honest about maturity: the mechanism is designed and stub-proven; the full skill catalog and real agent runtime are planned
|
||||||
|
|
||||||
|
**Key takeaway:** Vibe coding on a laptop — but every submission passes the same safety envelope. The agent produces the contract; the platform verifies it.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A2 — No Platform Code, No Cloning
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The consumer's CI definition is a thin wrapper — one `uses:` line pointing at a versioned tag. That's the only coupling
|
||||||
|
- The runner checks out the consumer repo, then checks out the platform repo into the workspace. The platform installs its own runtime dependencies — the consumer installs nothing
|
||||||
|
- The consumer never clones the platform repo, never invokes platform scripts locally (optional `--check-only` validation is available but not required)
|
||||||
|
- When the platform ships a fix, every consumer on a floating MAJOR.MINOR tag gets it on their next run — no per-repo upgrade project
|
||||||
|
- For the Head of Cloud: there is no "platform code in every consumer repo" problem. The version-pinned `uses:` line is the only coupling, and it updates itself within the line
|
||||||
|
|
||||||
|
**Key takeaway:** One `uses:` line is the only coupling. The platform fetches itself at run time. No per-repo upgrade projects.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A3 — Local Reproducibility
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- The entire CI pipeline runs from the shell, not just in CI — no "works on my machine, fails in CI" gap
|
||||||
|
- `scripts/run_ci.sh` mirrors the CI pipeline locally — the same three stages (lint → test → check-only) in sequence
|
||||||
|
- `scripts/run_platform.sh --check-only` runs the platform offline — no AWS, no policy engine, no outbox required. Validates a contract end-to-end before pushing
|
||||||
|
- `--plan-only` runs through the infrastructure plan without applying
|
||||||
|
- The CI and deploy pipelines are defined by declarative contracts (YAML instances validated against JSON Schemas) — a single source of truth that both workflows implement
|
||||||
|
|
||||||
|
**Key takeaway:** Validate offline, plan offline, push when confident. The same declarative contract drives local tooling and CI.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A4 — The Road to the North Star
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Call this out explicitly: **proposed phasing, not formally planned** — don't let the audience read it as a commitment
|
||||||
|
- Phase 1 is what's tested today — core platform (contract, catalog, evidence)
|
||||||
|
- Phase 2 is the next milestone — safe promotion wiring for qa/prod/dr
|
||||||
|
- Phase 3 introduces the agentic surface — skill catalog + agents
|
||||||
|
- Phase 4 is the north star — citizen developer GA on the same safety envelope
|
||||||
|
- Use this slide only when an audience member asks "how do you get from here to there"
|
||||||
|
|
||||||
|
**Key takeaway:** A proposed path from the tested core to the citizen developer north star — proposed phasing, not formally planned.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A5 — Glossary
|
||||||
|
|
||||||
|
**Talking points:**
|
||||||
|
- Keep this slide in your back pocket for the audience member who asks "what does ABAC actually mean?" — don't read it aloud
|
||||||
|
- OIDC = short-lived federation tokens, no long-lived credentials; ABAC = access scoped by resource tags + repo identity, not roles
|
||||||
|
- CMK = per-stack encryption key, 90-day rotation; CMDB = validates change requests for decommission
|
||||||
|
- RPO = 0 means evidence written synchronously, no data loss; HITL = deliberate human attestation for qa/prod/dr
|
||||||
|
- VCS = the git hosting platform (GitHub, Gitea, GitLab); NFR = encryption, tagging, observability standards
|
||||||
|
|
||||||
|
**Key takeaway:** The deck uses real security and ops vocabulary. The glossary is the cheat sheet for the audience member who wants the definitions.
|
||||||
@@ -0,0 +1,345 @@
|
|||||||
|
# The Developer Experience
|
||||||
|
|
||||||
|
> **Subtitle:** Agentic Cloud Delivery Platform
|
||||||
|
> **Audience:** Senior Leadership, CTO, Head of Cloud, Head of Infrastructure, Head of DevOps
|
||||||
|
> **Length:** ~15 minutes · 10 main + 6 appendix = 16 slides
|
||||||
|
> **Purpose:** Sell the developer experience and the citizen developer experience to tech leadership — velocity without sacrificing safety, and security/observability/compliance as platform defaults rather than per-team effort.
|
||||||
|
> **Maturity framing:** "Testing" = works internally, dev pilot-ready. "Planned" = on the roadmap. "Agentic" = involves AI agents or autonomous decision-making.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 1 — Title
|
||||||
|
|
||||||
|
The consumer surface is intentionally tiny. The platform's surface is large and opinionated.
|
||||||
|
|
||||||
|
> **Speaker notes:** Brief introduction — this deck covers *who uses the platform and how fast/safe they ship*, not the internal mechanics (that's the companion deck). Set the frame: velocity without sacrificing safety, and security/observability/compliance as platform defaults rather than per-team effort.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 2 — Where ACDL Sits in Your World
|
||||||
|
|
||||||
|
Story beat: Here's who uses the platform and where the boundary is.
|
||||||
|
|
||||||
|
The platform serves **two kinds of consumer** through two coordinated paths — but both converge on the **same contract, the same policy envelope, and the same evidence stream.**
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart TD
|
||||||
|
U1["Anything upstream<br/>(IDE / agentic SDLC / vibe coding)"] --> T["Technical developer<br/>writes app + contract"]
|
||||||
|
U1 --> C["Citizen developer<br/>declares intent"]
|
||||||
|
T --> K["Contract YAML"]
|
||||||
|
C --> AI["An AI agent maps intent<br/>to a reviewed-skill contract"]
|
||||||
|
AI --> K
|
||||||
|
K --> ACDL["ACDL — infrastructure only<br/>resolve → check → plan → policy<br/>→ confidence → evidence → apply"]
|
||||||
|
ACDL --> AWS["AWS resources provisioned + governed"]
|
||||||
|
```
|
||||||
|
|
||||||
|
- **Technical developer** — owns app code + a contract + a thin CI definition. Uses the full module catalog and inputs.
|
||||||
|
- **Citizen developer** — declares intent in plain language; an AI agent produces a contract that passes the **same** safety envelope as a senior engineer's. <span class="badge agentic">Agentic</span>
|
||||||
|
- **Upstream is anything** — your IDE, an agentic SDLC, or vibe coding on a laptop. ACDL doesn't care how the contract was produced.
|
||||||
|
- **ACDL is infrastructure only** — it provisions and governs AWS resources. Application deployment is upstream.
|
||||||
|
|
||||||
|
The platform is **opinionated in what it accepts, regardless of who is declaring.** There is no "citizen developer mode" with weaker checks.
|
||||||
|
|
||||||
|
> **Speaker notes:** This is the thesis of the deck. The two surfaces are *parallel*, not a progression — a citizen developer doesn't "graduate" to the developer surface. Both produce a contract; both get the same treatment. The scope boundary matters: anything upstream of the contract is out of ACDL's concern — ACDL is the infrastructure layer that takes a contract and governs the AWS resources. The leadership takeaway: we expand who can ship safely without lowering the bar.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 3 — The Contract — The Entire Consumer Surface
|
||||||
|
|
||||||
|
Story beat: Now let's look at what a consumer actually writes — it's tiny.
|
||||||
|
|
||||||
|
Three things. That is the entire consumer-side surface.
|
||||||
|
|
||||||
|
1. **App code** — the consumer's service, at the top level of the repo
|
||||||
|
2. **A contract** — a single YAML file: module, environment, inputs
|
||||||
|
3. **A one-line CI definition** — a thin `uses:` wrapper pointing at a versioned platform workflow
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
uses: acdl/pipelines/deploy.yaml@v1.6
|
||||||
|
module: microservice
|
||||||
|
environment: dev
|
||||||
|
inputs:
|
||||||
|
cpu: 256
|
||||||
|
memory: 512
|
||||||
|
desired_count: 2
|
||||||
|
port: 8080
|
||||||
|
```
|
||||||
|
|
||||||
|
The developer does **not**:
|
||||||
|
|
||||||
|
- Write infrastructure modules.
|
||||||
|
- Author workflow YAML beyond the one-line `uses:` wrapper.
|
||||||
|
- Clone the platform repo.
|
||||||
|
- Hold cloud credentials.
|
||||||
|
- Maintain a state backend, a VPC, or a runner.
|
||||||
|
|
||||||
|
> **Speaker notes:** Hold this slide. The audience should sit with how small the consumer surface is. Every item in the "does not" list is a category of toil the platform removes. The contract is the API — deliberately tiny so that it can be reviewed, validated, and audited. For the Head of DevOps: this is the lever for throughput — the bottleneck moves off the platform team's ticket queue.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 4 — The Developer Feedback Loop
|
||||||
|
|
||||||
|
Story beat: Once you push, here's what you see — in real time, in your own logs.
|
||||||
|
|
||||||
|
Developers see **what the platform is doing**, in real time. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Streamed output by default** — the infrastructure plan, policy-check results, and each check record flow to stdout.
|
||||||
|
- **PR comments after every successful pipeline stage** — a developer always knows where they stand without refreshing a dashboard.
|
||||||
|
- **Clear, explainable halt reasons** — a policy violation, an insufficient confidence signal, or a missing attestation. **Never an opaque debugging exercise.**
|
||||||
|
- **Connection strings posted as PR comments** — human-readable, no hunting. Runtime secrets go to encrypted Parameter Store (KMS-encrypted, namespaced), never to logs.
|
||||||
|
- **Errors become GitHub issues, automatically** — a failed deploy opens an issue on the platform repo. The consumer's only grant is the onboarding-granted Lambda-invoke permission — no separate `issues: write` scope on the consumer side.
|
||||||
|
|
||||||
|
> **Speaker notes:** This directly answers "but developers hate platforms that hide what they're doing." The platform is opinionated about *what* runs, not *opaque* about *that* it runs. The PR-comment-after-each-stage pattern is a small thing that compounds into trust. The "errors become issues" point is a DX win that also helps the platform team — every consumer failure is a tracked, queryable artifact, not a lost log line. The Head of DevOps should hear: the platform closes the feedback loop, it doesn't just push a green/red status.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 5 — Versioned, Predictable Releases
|
||||||
|
|
||||||
|
Story beat: You control when you absorb platform improvements — no surprise upgrades.
|
||||||
|
|
||||||
|
Consumers control **when** they absorb platform improvements. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Floating MAJOR + MINOR tags** (e.g. `@v1.6`) — a consumer automatically receives patch updates within the line.
|
||||||
|
- **Semantic versioning with a clear contract:** interface → MAJOR, behavior → MINOR, lifecycle → PATCH.
|
||||||
|
- **A consumer can pin to an exact version** for maximum stability, or float on MAJOR only (`@v1`) to absorb new features on their own cadence.
|
||||||
|
- **Unversioned references (`@main`, bare) are discouraged** — the versioned tag is the only immutability lever a consumer has.
|
||||||
|
- **Automated release job** computes the next semver on merge to main, creates the tag, and updates the floating tags.
|
||||||
|
|
||||||
|
> **Speaker notes:** This is the "no surprise upgrades" story. Leadership hears two things: (1) consumers aren't forced to chase the platform, (2) the platform isn't forced to support N forks of every workflow. The versioning discipline is what makes both true.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 6 — Friendly Onboarding
|
||||||
|
|
||||||
|
Story beat: First impressions matter — the platform fails gracefully, not opaquely.
|
||||||
|
|
||||||
|
First impressions of a platform are made **when it fails for the first time.** The platform fails gracefully. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
When no environment is bound, the platform emits a **user-friendly onboarding prompt** instead of failing opaquely. The prompt tells the consumer:
|
||||||
|
|
||||||
|
1. That no environment is bound to their repo yet.
|
||||||
|
2. What the platform will provision on their behalf (account, network, state, role).
|
||||||
|
3. The expected turnaround for the platform team to grant the environment.
|
||||||
|
4. How to request an environment.
|
||||||
|
|
||||||
|
The pipeline then **exits without attempting a deployment** — no partial state, no confusing errors.
|
||||||
|
|
||||||
|
<span class="badge planned">Citizen developer onboarding path: planned</span>
|
||||||
|
|
||||||
|
> **Speaker notes:** This looks like a small thing; it's actually a cultural one. The platform's posture is "help me get started," not "you should have known." For the Head of DevOps: this is what drives adoption. Platforms that fail opaquely on first run get routed around.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 7 — Safe Promotion Path
|
||||||
|
|
||||||
|
Story beat: Promotion is a workflow choice, not a contract edit — and the bar rises automatically.
|
||||||
|
|
||||||
|
The contract is environment-agnostic. The platform raises the bar automatically.
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart LR
|
||||||
|
DEV["dev<br/>autonomous"] -->|raise the bar| QA["qa<br/>QA attests"]
|
||||||
|
QA -->|raise the bar| PROD["prod<br/>SRE attests"]
|
||||||
|
PROD -->|raise the bar| DR["dr<br/>SRE attests + DR drill"]
|
||||||
|
```
|
||||||
|
|
||||||
|
**Approach A — One contract, one job per environment.** A single contract is referenced by multiple jobs; the environment is passed by each job and interpolated at runtime. The contract itself never changes.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
dev:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract.yaml, environment: dev }
|
||||||
|
qa:
|
||||||
|
needs: dev
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract.yaml, environment: qa }
|
||||||
|
```
|
||||||
|
|
||||||
|
**Approach B — Environment-specific contracts.** When inputs genuinely differ per environment, each job points at its own contract file. The pipeline, policy, and confidence model stay identical.
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
jobs:
|
||||||
|
dev:
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract-dev.yaml }
|
||||||
|
qa:
|
||||||
|
needs: dev
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.6
|
||||||
|
with: { contract: .acdl/contract-qa.yaml }
|
||||||
|
```
|
||||||
|
|
||||||
|
Whichever approach a team picks, the platform applies the same rising bar:
|
||||||
|
|
||||||
|
| Environment | What the platform adds | Maturity |
|
||||||
|
|---|---|---|
|
||||||
|
| dev | Confidence ≥ 0.50, fully autonomous | <span class="badge testing">Testing</span> |
|
||||||
|
| qa | QA human attestation + confidence ≥ 0.75 | <span class="badge planned">Planned</span> |
|
||||||
|
| prod | SRE human attestation + confidence ≥ 0.90 | <span class="badge planned">Planned</span> |
|
||||||
|
| dr | SRE human attestation + confidence ≥ 0.95 + a disaster-recovery drill reference | <span class="badge planned">Planned</span> |
|
||||||
|
|
||||||
|
- **No staging environment** — the design deliberately removes the "staging is basically prod but not really" anti-pattern. Dev is the only autonomous environment.
|
||||||
|
- **Separation of duties is enforced** — the QA approver cannot be the prod approver.
|
||||||
|
- **Timeout discipline** — 1 business day = warn + escalate; 2 business days = auto-freeze + re-submit.
|
||||||
|
|
||||||
|
> **Speaker notes:** Promotion is a workflow choice, not a contract mutation — this matters because it means a promotion can be reviewed as a *diff in the workflow*, not as a rewritten contract. Approach A keeps the single source of truth; Approach B lets teams whose inputs genuinely vary keep that variation explicit and reviewable. For leadership: the DX win is that the contract stays stable across environments; the safety win is that the platform raises the threshold and attestation bar automatically based on the target environment the job declares. The consumer can't bypass the gates — they pick *which* environment to target, and the platform applies the right bar. Be honest about maturity: dev is tested and pilot-ready; qa/prod/dr wiring is planned.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 8 — Safe Decommission
|
||||||
|
|
||||||
|
Story beat: Tearing down is as deliberate as deploying — and just as gated.
|
||||||
|
|
||||||
|
Tearing down a stack is **as deliberate as deploying one.** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
```yaml
|
||||||
|
uses: acdl/.github/workflows/deploy.yml@v1.8
|
||||||
|
with:
|
||||||
|
contract: .acdl/contract.yaml
|
||||||
|
mode: decommission
|
||||||
|
changeRequestId: "CHG0678912"
|
||||||
|
```
|
||||||
|
|
||||||
|
A 2-step pipeline with **two SRE human-attestation gates**:
|
||||||
|
|
||||||
|
1. **Validate the change request** — the platform queries the CMDB and asserts the CR is `approved` and matches the consumer repo. No CR, no decommission.
|
||||||
|
2. **Disable deletion protection** → **SRE approves** → **Zero all counts + destroy** → **a second SRE approves.**
|
||||||
|
|
||||||
|
The per-stack encryption key enters a **grace window** (default 30 days) so encrypted data remains recoverable. The key is permanently deleted only after the window expires.
|
||||||
|
|
||||||
|
> **Speaker notes:** The counter-argument to "deletion protection makes cleanup impossible" is this slide. Decommission is a first-class, gated, two-approval flow — not a lock with no key, and not an ungated `terraform destroy`. For the Head of Infrastructure: the CMDB validation means decommission is auditable, not just possible.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 9 — Self-Service Module Catalog
|
||||||
|
|
||||||
|
Story beat: You don't author infrastructure — you pick from pre-built, security-reviewed building blocks.
|
||||||
|
|
||||||
|
Developers pick from **pre-built, security-reviewed building blocks.** <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- **Primitives** — single-purpose resources (S3, VPC, ECS, IAM, load balancer, container registry, CloudFront, WAF, RDS). Each has documented inputs/outputs, usage, compliance extension points, and versioning.
|
||||||
|
- **Modules** — composed patterns (a static site with CDN + WAF; a microservice with VPC + ECS + load balancer + registry).
|
||||||
|
- **Validated examples per module** — `simple.yaml` + `complex.yaml` + variation files, validated against the contract schema in CI. Examples cannot drift from the schema silently.
|
||||||
|
- **Auto-promotion of patterns** — auto-promoted to the catalog after 3 observed usages. <span class="badge planned">Planned</span> <span class="badge agentic">Agentic</span>
|
||||||
|
- **Compliance extension points** — each module lists where GDPR, SOX, SOC2, DORA controls will wire in. <span class="badge planned">Planned</span>
|
||||||
|
|
||||||
|
> **Speaker notes:** The catalog is what makes "declare intent" practical — you can only declare a module that exists. For leadership: the catalog is the leverage. One well-reviewed module serves every consumer; a fix to the module serves every consumer on the next run. This is the compounding asset.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Slide 10 — The Desired Outcomes
|
||||||
|
|
||||||
|
Story beat: Here's what this delivers to the organization.
|
||||||
|
|
||||||
|
- **Velocity without sacrificing safety.** Speed is in the ergonomics (a simple contract, a one-line `uses:`); safety is in the gates the consumer cannot bypass.
|
||||||
|
- **Security, observability, and compliance as platform defaults** — not per-team effort, not post-hoc remediation. Encryption, deletion protection, uptime monitoring, policy checks, and evidence are on by construction.
|
||||||
|
- **Auditability as a byproduct, not a project.** Every production change is traceable to a human attestation and a tamper-evident evidence event — captured during the deploy, not reconstructed for the audit.
|
||||||
|
- **Blast radius contained by design.** Zero-trust OIDC + ABAC means a consumer can only touch its own tagged resources. One consumer can never affect another.
|
||||||
|
- **The bottleneck moves off the platform team's ticket queue.** A merged change progresses through lower environments without a platform engineer joining a thread. The platform team invests in the platform, not in per-deployment hand-holding.
|
||||||
|
- **Infrastructure as a utility, not a craft.** Teams consume infrastructure, they don't maintain it — and the platform compounds value over time by learning from recurring patterns.
|
||||||
|
- **A path to the citizen developer.** The same safety envelope that serves a senior engineer will serve a non-technical consumer. <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|
> **Speaker notes:** Close on the strategic frame. The platform is not "a CI/CD tool" — it is the organizational lever for shipping safely at the pace the business demands, with the security and audit posture the regulators require. Invite questions; the companion deck ("How the Platform Works") covers the internal mechanics in more depth.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## Appendix — Contents
|
||||||
|
|
||||||
|
For deep dives — these slides cover details omitted from the main 10.
|
||||||
|
|
||||||
|
1. **A1 — The Citizen Developer Experience** (full)
|
||||||
|
2. **A2 — No Platform Code, No Cloning** (detail)
|
||||||
|
3. **A3 — Local Reproducibility** (detail)
|
||||||
|
4. **A4 — The Road to the North Star** (phased roadmap)
|
||||||
|
5. **A5 — Glossary**
|
||||||
|
|
||||||
|
> **Speaker notes:** These are backup slides for Q&A. Use them when the audience asks for the detail behind a main-slide claim. Don't walk through them in the main talk unless time permits.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A1 — The Citizen Developer Experience
|
||||||
|
|
||||||
|
A non-technical consumer ships a production deployment **by declaring intent** — without authoring a workflow, a configuration file, or an infrastructure module. Think of this as **vibe coding on a laptop** — the consumer describes what they want; an AI agent turns that into a contract that the platform treats identically to a senior engineer's.
|
||||||
|
|
||||||
|
- The consumer opens an issue describing what they need (e.g. "a web API for the pricing service").
|
||||||
|
- An AI agent maps the intent to a contract referencing a module from the **reviewed skill catalog.** <span class="badge agentic">Agentic</span>
|
||||||
|
- The contract enters the **same pipeline** and must clear the **same confidence gate** before promotion.
|
||||||
|
|
||||||
|
**Guardrails that make this safe:**
|
||||||
|
|
||||||
|
- Skills are **versioned, signed, and reviewed for sensitive data before release** (Infra & Ops owns the review — it is the mandatory release gate).
|
||||||
|
- Agents are **stateless** — all state lives in the platform. The platform does not run the skill blindly; it trusts and **always verifies** on the platform side.
|
||||||
|
- The agent's trace and submission confidence are captured in the contract (`profile: agentic`), so a reviewer can see *how* the contract was produced.
|
||||||
|
- **Initial skill catalog:** web API, worker, scheduled job, static asset, basic observability bootstrap.
|
||||||
|
|
||||||
|
<span class="badge planned">Skill catalog + real agent runtime: planned</span> <span class="badge agentic">Agentic</span>
|
||||||
|
|
||||||
|
> **Speaker notes:** Be honest about maturity: the *mechanism* (agent → contract → same pipeline) is designed and the stub was proven in the v1.0 demo; the full skill catalog and real agent runtime are planned. The "vibe coding on a laptop" framing is intentional — it meets the citizen developer where they already are, but every submission still passes the same safety envelope. The design point matters to leadership now: we are building for a world where more of the org can ship safely, not where more of the org has to become a platform engineer.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A2 — No Platform Code, No Cloning
|
||||||
|
|
||||||
|
Consumers `uses:` a **versioned** central workflow. The platform fetches itself at run time. The consumer **never touches platform internals.**
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart LR
|
||||||
|
A["Consumer repo<br/>app + contract + 'uses:'"] -->|triggers on push to main| B["Platform runner"]
|
||||||
|
B -->|checks out the consumer repo| A
|
||||||
|
B -->|checks out the ACDL platform repo<br/>into the workspace| C["Platform code<br/>(modules, adapters, schemas)"]
|
||||||
|
C --> B
|
||||||
|
B -->|runs the pipeline against<br/>the consumer's contract| D["Consumer's resources in AWS"]
|
||||||
|
```
|
||||||
|
|
||||||
|
- The consumer's CI definition is a thin wrapper — one `uses:` line pointing at a versioned tag.
|
||||||
|
- The runner checks out the consumer repo, then checks out the platform repo into the workspace.
|
||||||
|
- The platform installs its own runtime dependencies. The consumer installs nothing.
|
||||||
|
- The consumer **never clones the platform repo, never invokes platform scripts locally** (optional `--check-only` validation is available but not required for the happy path).
|
||||||
|
- When the platform ships a fix, every consumer on a floating MAJOR.MINOR tag gets it on their next run — no per-repo upgrade project.
|
||||||
|
|
||||||
|
> **Speaker notes:** The Head of Cloud cares about this: there is no "platform code in every consumer repo" problem. The version-pinned `uses:` line is the *only* coupling, and it's a coupling that updates itself within the line.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A3 — Local Reproducibility
|
||||||
|
|
||||||
|
The entire CI pipeline runs **from the shell**, not just in CI. <span class="badge testing">Testing</span>
|
||||||
|
|
||||||
|
- `scripts/run_ci.sh` mirrors the CI pipeline locally — the same three stages (lint → test → check-only) in sequence.
|
||||||
|
- `scripts/run_platform.sh --check-only` runs the platform **offline** — no AWS, no policy engine, no outbox required. Validates a contract end-to-end before pushing.
|
||||||
|
- `--plan-only` runs through the infrastructure plan without applying.
|
||||||
|
- The CI and deploy pipelines are defined by **declarative contracts** (YAML instances validated against JSON Schemas) — a single source of truth that both workflows implement.
|
||||||
|
|
||||||
|
> **Speaker notes:** This is the "no surprises before you push" story. A consumer can validate their contract offline, run the plan offline, and only push when they're confident. The same declarative contract drives both the local tooling and CI — there's no "works on my machine, fails in CI" gap.
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A4 — The Road to the North Star
|
||||||
|
|
||||||
|
*Proposed phasing — not formally planned.*
|
||||||
|
|
||||||
|
```mermaid
|
||||||
|
flowchart LR
|
||||||
|
P1["Phase 1<br/>Core platform<br/>(contract, catalog, evidence)"] --> P2["Phase 2<br/>Safe promotion<br/>qa/prod/dr wiring"]
|
||||||
|
P2 --> P3["Phase 3<br/>Agentic surface<br/>(skill catalog + agents)"]
|
||||||
|
P3 --> P4["Phase 4<br/>North star<br/>citizen developer GA"]
|
||||||
|
```
|
||||||
|
|
||||||
|
> **Speaker notes:** This is a proposed phasing, not a formally committed plan — call that out explicitly. Phase 1 is what's tested today. Phase 2 is the next milestone (qa/prod/dr wiring). Phase 3 introduces the agentic surface. Phase 4 is the north star: citizen developer GA on the same safety envelope. Use this only when an audience member asks "how do you get from here to there."
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## A5 — Glossary
|
||||||
|
|
||||||
|
| Term | Meaning |
|
||||||
|
|---|---|
|
||||||
|
| **OIDC** | OpenID Connect — federation protocol for short-lived tokens, no long-lived credentials |
|
||||||
|
| **ABAC** | Attribute-Based Access Control — access scoped by resource tags + repo identity, not roles |
|
||||||
|
| **CMK** | Customer-Managed Key — per-stack encryption key, 90-day rotation, no shared keys |
|
||||||
|
| **CMDB** | Configuration Management Database — validates change requests for decommission |
|
||||||
|
| **RPO** | Recovery Point Objective — RPO = 0 means evidence is written synchronously, no data loss |
|
||||||
|
| **HITL** | Human-in-the-Loop — deliberate human attestation required for qa/prod/dr environments |
|
||||||
|
| **VCS** | Version Control System — the git hosting platform (GitHub, Gitea, GitLab) |
|
||||||
|
| **NFR** | Non-Functional Requirement — encryption, tagging, observability standards |
|
||||||
|
|
||||||
|
> **Speaker notes:** Keep this slide in your back pocket for the audience member who asks "what does ABAC actually mean?" Don't read it aloud.
|
||||||
@@ -13,7 +13,7 @@ Consumers declare intent; the platform delivers safe production deployment throu
|
|||||||
## 3. Core Tenets
|
## 3. Core Tenets
|
||||||
|
|
||||||
* **Operations are Declared, Not Executed.** Consumers define what they need — workload shape, dependencies, non-functional requirements, policy constraints. The platform handles reconciliation, provisioning, and environment progression. The execution burden moves from the human to the platform.
|
* **Operations are Declared, Not Executed.** Consumers define what they need — workload shape, dependencies, non-functional requirements, policy constraints. The platform handles reconciliation, provisioning, and environment progression. The execution burden moves from the human to the platform.
|
||||||
* **The Delivery Lifecycle is a Sovereign Boundary.** The platform governs the infrastructure and delivery substrate. It does not penetrate upstream product or software development lifecycles. Integration happens exclusively through validated, published contracts.
|
* **The Delivery Lifecycle is a Sovereign Boundary.** The platform governs the infrastructure and delivery engine. It does not penetrate upstream product or software development lifecycles. Integration happens exclusively through validated, published contracts.
|
||||||
* **Lower Environments are Autonomous; Higher Environments are Attested.** Progression through lower environments proceeds through zero-touch agentic automation. Promotion to higher-stakes environments requires deliberate human attestation — not as a rubber stamp, but as a policy-mandated act of accountability.
|
* **Lower Environments are Autonomous; Higher Environments are Attested.** Progression through lower environments proceeds through zero-touch agentic automation. Promotion to higher-stakes environments requires deliberate human attestation — not as a rubber stamp, but as a policy-mandated act of accountability.
|
||||||
* **Safety is Computed, Not Assumed.** Every delivery action produces a measurable, explainable confidence signal aggregating policy conformance, validation evidence, and historical behavior. The signal is the platform's certified answer to "is this safe to proceed?" Reliance on operator instinct or tenure is not a substitute.
|
* **Safety is Computed, Not Assumed.** Every delivery action produces a measurable, explainable confidence signal aggregating policy conformance, validation evidence, and historical behavior. The signal is the platform's certified answer to "is this safe to proceed?" Reliance on operator instinct or tenure is not a substitute.
|
||||||
* **Infrastructure is Consumed, Not Maintained.** Compute is abstract, containerized, or serverless. The platform does not manage node, OS, or bare-metal lifecycles. Infrastructure is treated as a utility, not a craft.
|
* **Infrastructure is Consumed, Not Maintained.** Compute is abstract, containerized, or serverless. The platform does not manage node, OS, or bare-metal lifecycles. Infrastructure is treated as a utility, not a craft.
|
||||||
@@ -50,7 +50,7 @@ This vision is purchased with deliberate sacrifices:
|
|||||||
|
|
||||||
* **Not an upstream development platform.** No management of product backlogs, sprint ceremonies, IDE extensions, or code authorship workflows.
|
* **Not an upstream development platform.** No management of product backlogs, sprint ceremonies, IDE extensions, or code authorship workflows.
|
||||||
* **Not a general-purpose AI.** The platform is not an open-ended conversational assistant. Autonomy is narrow, scoped to delivery and infrastructure reconciliation, and bounded by strict policy envelopes.
|
* **Not a general-purpose AI.** The platform is not an open-ended conversational assistant. Autonomy is narrow, scoped to delivery and infrastructure reconciliation, and bounded by strict policy envelopes.
|
||||||
* **Not a legacy infrastructure bridge.** No management of VMs, bare metal, or OS lifecycles. The substrate will not extend to non-cloud-native patterns.
|
* **Not a legacy infrastructure bridge.** No management of VMs, bare metal, or OS lifecycles. The engine will not extend to non-cloud-native patterns.
|
||||||
* **Not a permissive delivery highway.** No escape hatches to bypass the confidence framework or the human attestation requirements at higher environments. Speed is a byproduct of confidence and policy compliance, not an override.
|
* **Not a permissive delivery highway.** No escape hatches to bypass the confidence framework or the human attestation requirements at higher environments. Speed is a byproduct of confidence and policy compliance, not an override.
|
||||||
* **Not a mutable audit log.** Version control history does not satisfy regulatory evidence. Auditability requires an immutable, externally-stored stream.
|
* **Not a mutable audit log.** Version control history does not satisfy regulatory evidence. Auditability requires an immutable, externally-stored stream.
|
||||||
|
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ L1 primitive MUST declare `deletion_protection` and `encryption_enabled`
|
|||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
Resources this module could be extended with for the future compliance
|
Resources this module could be extended with for the future compliance
|
||||||
milestone (GDPR, SOX, SOC2, HIPAA, DORA). Not implemented yet — listed
|
milestone (GDPR, SOX, SOC2, DORA). Not implemented yet — listed
|
||||||
so the redesign can plan for them.
|
so the redesign can plan for them.
|
||||||
|
|
||||||
- **<area>** — <what could be added, e.g. KMS key for encryption>
|
- **<area>** — <what could be added, e.g. KMS key for encryption>
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ There are two kinds of module:
|
|||||||
deploy a complete stack (e.g. an ECS Fargate microservice). Each module
|
deploy a complete stack (e.g. an ECS Fargate microservice). Each module
|
||||||
has a `composition.json` declaring its children and wires.
|
has a `composition.json` declaring its children and wires.
|
||||||
|
|
||||||
The substrate adapter (`adapters/terraform/adapter.py`) compiles a
|
The engine adapter (`adapters/terraform/adapter.py`) compiles a
|
||||||
module instance to infrastructure. Each module's README documents which
|
module instance to infrastructure. Each module's README documents which
|
||||||
resources it creates.
|
resources it creates.
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ Standards for authoring and reviewing ACDL modules. These standards
|
|||||||
govern the two module tiers — **L1 primitives** (single cloud resource
|
govern the two module tiers — **L1 primitives** (single cloud resource
|
||||||
or small group of related resources) and **L2 modules** (compositions
|
or small group of related resources) and **L2 modules** (compositions
|
||||||
that reference L1 primitives to deploy a complete stack) — and the
|
that reference L1 primitives to deploy a complete stack) — and the
|
||||||
substrate adapter that compiles them to Terraform. They are written for
|
engine adapter that compiles them to Terraform. They are written for
|
||||||
**platform engineers** and **AI agents** that author or review new
|
**platform engineers** and **AI agents** that author or review new
|
||||||
modules against the existing corpus (12 L1 primitives and 2 L2 modules
|
modules against the existing corpus (12 L1 primitives and 2 L2 modules
|
||||||
shipped in v1.8).
|
shipped in v1.8).
|
||||||
@@ -21,7 +21,7 @@ modules `static-assets` and `microservice`). They exist so that:
|
|||||||
- platform engineers can review a new module against a fixed checklist;
|
- platform engineers can review a new module against a fixed checklist;
|
||||||
- AI agents authoring modules produce code that passes review without
|
- AI agents authoring modules produce code that passes review without
|
||||||
iteration; and
|
iteration; and
|
||||||
- the substrate adapter (`adapters/terraform/adapter.py`) can compile a
|
- the engine adapter (`adapters/terraform/adapter.py`) can compile a
|
||||||
module instance with no module-specific code in the adapter beyond the
|
module instance with no module-specific code in the adapter beyond the
|
||||||
three tables in §8.
|
three tables in §8.
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@ bump and requires a migration plan.
|
|||||||
|
|
||||||
An L1 primitive is a single cloud resource or a small group of related
|
An L1 primitive is a single cloud resource or a small group of related
|
||||||
resources (e.g. a VPC with subnets and a route table). It is declared by
|
resources (e.g. a VPC with subnets and a route table). It is declared by
|
||||||
an `interface.json` and realized by the substrate adapter; it does not
|
an `interface.json` and realized by the engine adapter; it does not
|
||||||
own Terraform code.
|
own Terraform code.
|
||||||
|
|
||||||
### 2.1 Required files
|
### 2.1 Required files
|
||||||
@@ -43,7 +43,7 @@ Every L1 primitive MUST contain, at minimum:
|
|||||||
|
|
||||||
| File | Purpose |
|
| File | Purpose |
|
||||||
|------|---------|
|
|------|---------|
|
||||||
| `interface.json` | Substrate-agnostic declaration: inputs, outputs, NFRs, optional multi-resource graph. |
|
| `interface.json` | Angine-agnostic declaration: inputs, outputs, NFRs, optional multi-resource graph. |
|
||||||
| `instance.json` | A concrete instance used as the adapter regression baseline. |
|
| `instance.json` | A concrete instance used as the adapter regression baseline. |
|
||||||
| `README.md` | Plain-language documentation following `README-TEMPLATE.md` (see §7). |
|
| `README.md` | Plain-language documentation following `README-TEMPLATE.md` (see §7). |
|
||||||
| `examples/simple.yaml` | A minimal contract that uses the primitive with required inputs only. |
|
| `examples/simple.yaml` | A minimal contract that uses the primitive with required inputs only. |
|
||||||
@@ -207,7 +207,7 @@ declares intra-refs from the subnet and route table to the VPC's
|
|||||||
- `aws:wafv2:webacl`
|
- `aws:wafv2:webacl`
|
||||||
- `aws:rds:instance`
|
- `aws:rds:instance`
|
||||||
- `aws:kms:key`, `aws:kms:alias`
|
- `aws:kms:key`, `aws:kms:alias`
|
||||||
- The substrate adapter's `TYPE_MAP` is the registry of stack types the
|
- The engine adapter's `TYPE_MAP` is the registry of stack types the
|
||||||
adapter can compile (see §8). A new stack type requires a `TYPE_MAP`
|
adapter can compile (see §8). A new stack type requires a `TYPE_MAP`
|
||||||
entry before the primitive can be deployed.
|
entry before the primitive can be deployed.
|
||||||
|
|
||||||
@@ -363,7 +363,7 @@ accidental teardown of production infrastructure.
|
|||||||
|
|
||||||
1. Every L1 MUST declare a `deletion_protection` NFR (boolean, default
|
1. Every L1 MUST declare a `deletion_protection` NFR (boolean, default
|
||||||
`true`) in `interface.json`. See §2.5.
|
`true`) in `interface.json`. See §2.5.
|
||||||
2. When `deletion_protection` is `true`, the substrate adapter emits a
|
2. When `deletion_protection` is `true`, the engine adapter emits a
|
||||||
`lifecycle { prevent_destroy = true }` block on the corresponding
|
`lifecycle { prevent_destroy = true }` block on the corresponding
|
||||||
Terraform resource. A `terraform destroy` against a protected
|
Terraform resource. A `terraform destroy` against a protected
|
||||||
resource fails with an error naming the resource.
|
resource fails with an error naming the resource.
|
||||||
@@ -431,7 +431,7 @@ Every module README MUST follow the structure of
|
|||||||
7. `## Usage` — a concrete snippet showing how a consumer references
|
7. `## Usage` — a concrete snippet showing how a consumer references
|
||||||
the module in a contract.
|
the module in a contract.
|
||||||
8. `## Compliance extension points` — resources or behaviors that could
|
8. `## Compliance extension points` — resources or behaviors that could
|
||||||
be added for the future compliance milestone (GDPR, SOX, SOC2, HIPAA,
|
be added for the future compliance milestone (GDPR, SOX, SOC2,
|
||||||
DORA). Not implemented yet; listed so the redesign can plan for them.
|
DORA). Not implemented yet; listed so the redesign can plan for them.
|
||||||
9. `## Examples` — links to `examples/simple.yaml` and
|
9. `## Examples` — links to `examples/simple.yaml` and
|
||||||
`examples/complex.yaml` with a one-line description of each.
|
`examples/complex.yaml` with a one-line description of each.
|
||||||
|
|||||||
@@ -57,7 +57,7 @@ The `target_group_arn` output is referenced by `ecs-service` as its
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **TLS / HTTPS listener** — add `aws_acm_certificate` + `ssl_policy` + `certificate_arn` for encryption in transit (SOC2 CC6.1, PCI-DSS 4.1, HIPAA §164.312(e)(1), GDPR Art.32).
|
- **TLS / HTTPS listener** — add `aws_acm_certificate` + `ssl_policy` + `certificate_arn` for encryption in transit (SOC2 CC6.1, PCI-DSS 4.1, GDPR Art.32).
|
||||||
- **Access logs** — add `access_logs { bucket = ..., prefix = ... }` to the load balancer (SOX, SOC2 CC7.2, DORA ICT audit trail).
|
- **Access logs** — add `access_logs { bucket = ..., prefix = ... }` to the load balancer (SOX, SOC2 CC7.2, DORA ICT audit trail).
|
||||||
- **Security group rules** — add ingress/egress rules restricting traffic to known sources (SOC2 CC6.6, PCI-DSS 1.2).
|
- **Security group rules** — add ingress/egress rules restricting traffic to known sources (SOC2 CC6.6, PCI-DSS 1.2).
|
||||||
- **Health check** — add a `health_check` block to the target group (SOC2 CC7.3 monitoring, DORA operational resilience).
|
- **Health check** — add a `health_check` block to the target group (SOC2 CC7.3 monitoring, DORA operational resilience).
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:elbv2:loadbalancer",
|
"type": "aws:elbv2:loadbalancer",
|
||||||
"description": "Application Load Balancer primitive (substrate-agnostic stack types aws:elbv2:loadbalancer + aws:elbv2:listener + aws:elbv2:targetgroup; the Terraform adapter translates to aws_lb/aws_lb_listener/aws_lb_target_group).",
|
"description": "Application Load Balancer primitive (engine-agnostic stack types aws:elbv2:loadbalancer + aws:elbv2:listener + aws:elbv2:targetgroup; the Terraform adapter translates to aws_lb/aws_lb_listener/aws_lb_target_group).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@@ -36,6 +36,18 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "AWS region the load balancer is created in.",
|
"description": "AWS region the load balancer is created in.",
|
||||||
"required": true
|
"required": true
|
||||||
|
},
|
||||||
|
"load_balancer_type": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Load balancer type (application or network).",
|
||||||
|
"required": false,
|
||||||
|
"default": "application"
|
||||||
|
},
|
||||||
|
"target_type": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "Target group target type (ip or instance).",
|
||||||
|
"required": false,
|
||||||
|
"default": "ip"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"outputs": {
|
"outputs": {
|
||||||
@@ -73,13 +85,13 @@
|
|||||||
{
|
{
|
||||||
"type": "aws:elbv2:loadbalancer",
|
"type": "aws:elbv2:loadbalancer",
|
||||||
"description": "Application load balancer in the VPC subnets.",
|
"description": "Application load balancer in the VPC subnets.",
|
||||||
"inputs": ["name", "subnets", "security_group"],
|
"inputs": ["name", "subnets", "security_group", "load_balancer_type"],
|
||||||
"outputs": ["lb_arn"]
|
"outputs": ["lb_arn"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "aws:elbv2:targetgroup",
|
"type": "aws:elbv2:targetgroup",
|
||||||
"description": "Target group for the ECS service tasks.",
|
"description": "Target group for the ECS service tasks.",
|
||||||
"inputs": ["name", "port", "protocol", "vpc_id"],
|
"inputs": ["name", "port", "protocol", "vpc_id", "target_type"],
|
||||||
"outputs": ["target_group_arn"]
|
"outputs": ["target_group_arn"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ inside a module composition (see `modules/l2/static-assets`).
|
|||||||
- **Logging** — CloudFront access logs to an S3 bucket for auditability
|
- **Logging** — CloudFront access logs to an S3 bucket for auditability
|
||||||
(SOC2 CC7.2, DORA audit trail).
|
(SOC2 CC7.2, DORA audit trail).
|
||||||
- **Field-level encryption** — add field-level encryption for PII fields
|
- **Field-level encryption** — add field-level encryption for PII fields
|
||||||
in POST bodies (HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
in POST bodies (GDPR Art.32).
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:cloudfront:distribution",
|
"type": "aws:cloudfront:distribution",
|
||||||
"description": "CloudFront distribution primitive (substrate-agnostic stack types aws:cloudfront:distribution + aws:cloudfront:originaccesscontrol; the Terraform adapter translates to aws_cloudfront_distribution + aws_cloudfront_origin_access_control).",
|
"description": "CloudFront distribution primitive (engine-agnostic stack types aws:cloudfront:distribution + aws:cloudfront:originaccesscontrol; the Terraform adapter translates to aws_cloudfront_distribution + aws_cloudfront_origin_access_control).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"bucket_regional_domain_name": {
|
"bucket_regional_domain_name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -45,11 +45,11 @@ The `repository_url` output is used to build the `image` input for
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **Image scanning** — add `image_scanning_configuration { scan_on_push = true }` for vulnerability scanning (SOC2 CC7.6, DORA ICT risk testing, HIPAA security monitoring).
|
- **Image scanning** — add `image_scanning_configuration { scan_on_push = true }` for vulnerability scanning (SOC2 CC7.6, DORA ICT risk testing, security monitoring).
|
||||||
- **Encryption** — add `encryption_configuration { encryption_type = "KMS", kms_key = ... }` with a customer-managed key (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
- **Encryption** — add `encryption_configuration { encryption_type = "KMS", kms_key = ... }` with a customer-managed key (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Image tag immutability** — add `image_tag_mutability = "IMMUTABLE"` to prevent tag overwriting (SOX §802, SOC2 CC6.1 integrity, DORA audit integrity).
|
- **Image tag immutability** — add `image_tag_mutability = "IMMUTABLE"` to prevent tag overwriting (SOX §802, SOC2 CC6.1 integrity, DORA audit integrity).
|
||||||
- **Lifecycle policy** — add `aws_ecr_lifecycle_policy` to enforce image retention / cleanup (GDPR Art.5(2) data minimization, SOC2 CC5.2).
|
- **Lifecycle policy** — add `aws_ecr_lifecycle_policy` to enforce image retention / cleanup (GDPR Art.5(2) data minimization, SOC2 CC5.2).
|
||||||
- **Access policy** — add a repository policy restricting pull/push to known roles (SOC2 CC6.1, HIPAA §164.308(a)(4)).
|
- **Access policy** — add a repository policy restricting pull/push to known roles (SOC2 CC6.1.
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:ecr:repository",
|
"type": "aws:ecr:repository",
|
||||||
"description": "ECR repository primitive (substrate-agnostic stack type aws:ecr:repository; the Terraform adapter translates to aws_ecr_repository).",
|
"description": "ECR repository primitive (engine-agnostic stack type aws:ecr:repository; the Terraform adapter translates to aws_ecr_repository).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -46,8 +46,8 @@ The `cluster_arn` output is referenced by `ecs-service` as its
|
|||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **Container Insights** — add `configuration { container_insights = "enabled" }` for observability (SOC2 CC7.3, DORA ICT risk monitoring).
|
- **Container Insights** — add `configuration { container_insights = "enabled" }` for observability (SOC2 CC7.3, DORA ICT risk monitoring).
|
||||||
- **CloudWatch Logs** — add a log group with retention policy for cluster-level audit logs (SOX, SOC2 CC7.2, HIPAA §164.312(b)).
|
- **CloudWatch Logs** — add a log group with retention policy for cluster-level audit logs (SOX, SOC2 CC7.2.
|
||||||
- **Encryption** — add `settings { name = "containerInsights", value = "enabled" }` and KMS-based encryption for container data (HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
- **Encryption** — add `settings { name = "containerInsights", value = "enabled" }` and KMS-based encryption for container data (GDPR Art.32).
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:ecs:cluster",
|
"type": "aws:ecs:cluster",
|
||||||
"description": "ECS Fargate cluster primitive (substrate-agnostic stack type aws:ecs:cluster; the Terraform adapter translates to aws_ecs_cluster).",
|
"description": "ECS Fargate cluster primitive (engine-agnostic stack type aws:ecs:cluster; the Terraform adapter translates to aws_ecs_cluster).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -64,9 +64,9 @@ provided.
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **CloudWatch Logs** — add `logConfiguration` to the container definition with a log group + retention policy (SOX, SOC2 CC7.2, HIPAA §164.312(b), DORA ICT incident logging).
|
- **CloudWatch Logs** — add `logConfiguration` to the container definition with a log group + retention policy (SOX, SOC2 CC7.2, DORA ICT incident logging).
|
||||||
- **Task execution role separation** — add a separate `aws_iam_role` for execution vs. the task role (SOC2 CC6.3 segregation of duties at runtime).
|
- **Task execution role separation** — add a separate `aws_iam_role` for execution vs. the task role (SOC2 CC6.3 segregation of duties at runtime).
|
||||||
- **Secrets injection** — add `secrets` block referencing AWS Secrets Manager / SSM Parameter Store with KMS encryption (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv)).
|
- **Secrets injection** — add `secrets` block referencing AWS Secrets Manager / SSM Parameter Store with KMS encryption (SOC2 CC6.1.
|
||||||
- **Execute command** — add `enable_execute_command` with KMS encryption for session audit (SOC2 CC7.2).
|
- **Execute command** — add `enable_execute_command` with KMS encryption for session audit (SOC2 CC7.2).
|
||||||
- **Deployment circuit breaker** — add `deployment_circuit_breaker` block for resilience (SOC2 CC9.1, DORA operational resilience).
|
- **Deployment circuit breaker** — add `deployment_circuit_breaker` block for resilience (SOC2 CC9.1, DORA operational resilience).
|
||||||
- **Health check** — add a `health_check` block to the target group (currently missing despite the contract schema having a healthcheck field).
|
- **Health check** — add a `health_check` block to the target group (currently missing despite the contract schema having a healthcheck field).
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:ecs:task_definition",
|
"type": "aws:ecs:task_definition",
|
||||||
"description": "ECS Fargate service primitive (substrate-agnostic stack types aws:ecs:task_definition + aws:ecs:service; the Terraform adapter translates to aws_ecs_task_definition/aws_ecs_service).",
|
"description": "ECS Fargate service primitive (engine-agnostic stack types aws:ecs:task_definition + aws:ecs:service; the Terraform adapter translates to aws_ecs_task_definition/aws_ecs_service).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"image": {
|
"image": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
@@ -61,6 +61,24 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "ARN of the CMK for CloudWatch log group encryption; if absent, uses managed key.",
|
"description": "ARN of the CMK for CloudWatch log group encryption; if absent, uses managed key.",
|
||||||
"required": false
|
"required": false
|
||||||
|
},
|
||||||
|
"desired_count": {
|
||||||
|
"type": "number",
|
||||||
|
"description": "Desired number of ECS task replicas (Fargate).",
|
||||||
|
"required": false,
|
||||||
|
"default": 1
|
||||||
|
},
|
||||||
|
"launch_type": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "ECS launch type (FARGATE or EC2).",
|
||||||
|
"required": false,
|
||||||
|
"default": "FARGATE"
|
||||||
|
},
|
||||||
|
"family": {
|
||||||
|
"type": "string",
|
||||||
|
"description": "ECS task definition family name.",
|
||||||
|
"required": false,
|
||||||
|
"default": "app"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"outputs": {
|
"outputs": {
|
||||||
@@ -89,13 +107,13 @@
|
|||||||
{
|
{
|
||||||
"type": "aws:ecs:task_definition",
|
"type": "aws:ecs:task_definition",
|
||||||
"description": "Fargate task definition; the adapter jsonencodes image/port/env into container_definitions.",
|
"description": "Fargate task definition; the adapter jsonencodes image/port/env into container_definitions.",
|
||||||
"inputs": ["image", "port", "cpu", "memory", "env"],
|
"inputs": ["image", "port", "cpu", "memory", "env", "family"],
|
||||||
"outputs": ["task_def_arn"]
|
"outputs": ["task_def_arn"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "aws:ecs:service",
|
"type": "aws:ecs:service",
|
||||||
"description": "Fargate service running the task definition in the cluster + subnets.",
|
"description": "Fargate service running the task definition in the cluster + subnets.",
|
||||||
"inputs": ["cluster_arn", "subnets", "security_group", "lb_target_group_arn"],
|
"inputs": ["cluster_arn", "subnets", "security_group", "lb_target_group_arn", "desired_count", "launch_type"],
|
||||||
"outputs": ["service_arn"]
|
"outputs": ["service_arn"]
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|||||||
@@ -51,8 +51,8 @@ into the Terraform `assume_role_policy` argument. The
|
|||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **Permissions boundary** — add `permissions_boundary` to enforce least-privilege guardrails (SOC2 CC6.1, SOX ITGC, DORA ICT access control).
|
- **Permissions boundary** — add `permissions_boundary` to enforce least-privilege guardrails (SOC2 CC6.1, SOX ITGC, DORA ICT access control).
|
||||||
- **Inline policy** — add `aws_iam_role_policy` for fine-grained least-privilege instead of broad managed policies (SOC2 CC6.1, HIPAA §164.308(a)(4)).
|
- **Inline policy** — add `aws_iam_role_policy` for fine-grained least-privilege instead of broad managed policies (SOC2 CC6.1.
|
||||||
- **MFA conditions** — add `condition` blocks requiring MFA for assume-role (SOC2 CC6.1, HIPAA §164.312(d)).
|
- **MFA conditions** — add `condition` blocks requiring MFA for assume-role (SOC2 CC6.1.
|
||||||
- **Source IP / region conditions** — add `aws:SourceIp` / `aws:RequestedRegion` conditions for data residency enforcement (GDPR Art.44-49, DORA ICT third-party risk).
|
- **Source IP / region conditions** — add `aws:SourceIp` / `aws:RequestedRegion` conditions for data residency enforcement (GDPR Art.44-49, DORA ICT third-party risk).
|
||||||
- **Access Analyzer** — add `aws_accessanalyzer_analyzer` to verify least-privilege (SOC2 CC6.1, GDPR Art.32).
|
- **Access Analyzer** — add `aws_accessanalyzer_analyzer` to verify least-privilege (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Role separation** — add a separate task role vs. execution role (SOC2 CC6.3 segregation of duties).
|
- **Role separation** — add a separate task role vs. execution role (SOC2 CC6.3 segregation of duties).
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:iam:role",
|
"type": "aws:iam:role",
|
||||||
"description": "IAM role primitive (substrate-agnostic stack type aws:iam:role; the Terraform adapter translates to aws_iam_role).",
|
"description": "IAM role primitive (engine-agnostic stack type aws:iam:role; the Terraform adapter translates to aws_iam_role).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"role_name": {
|
"role_name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ pipeline as the regression baseline).
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **Key rotation** — automatic key rotation enabled by default (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
- **Key rotation** — automatic key rotation enabled by default (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Deletion protection** — pending deletion window prevents accidental destruction (SOC2 CC7.2).
|
- **Deletion protection** — pending deletion window prevents accidental destruction (SOC2 CC7.2).
|
||||||
- **Key policy** — restrict key usage to the stack's IAM roles (SOC2 CC6.1, GDPR Art.32).
|
- **Key policy** — restrict key usage to the stack's IAM roles (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Audit logging** — CloudTrail logs all KMS API calls (SOC2 CC7.2, DORA audit trail).
|
- **Audit logging** — CloudTrail logs all KMS API calls (SOC2 CC7.2, DORA audit trail).
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
An RDS database instance. Supports multiple database engines (postgres,
|
An RDS database instance. Supports multiple database engines (postgres,
|
||||||
mysql, mariadb, sqlserver, oracle) via the `engine` input. The adapter
|
mysql, mariadb, sqlserver, oracle) via the `engine` input. The adapter
|
||||||
translates the substrate-agnostic `aws:rds:instance` stack type to the
|
translates the engine-agnostic `aws:rds:instance` stack type to the
|
||||||
Terraform `aws_db_instance` resource.
|
Terraform `aws_db_instance` resource.
|
||||||
|
|
||||||
## Resources
|
## Resources
|
||||||
@@ -72,18 +72,17 @@ as the regression baseline).
|
|||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **KMS encryption** — add a customer-managed KMS key for storage
|
- **KMS encryption** — add a customer-managed KMS key for storage
|
||||||
encryption (`kms_key_id` argument) (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv),
|
encryption (`kms_key_id` argument) (SOC2 CC6.1,
|
||||||
GDPR Art.32).
|
GDPR Art.32).
|
||||||
- **Automated backups** — the `backup_retention_period` NFR controls
|
- **Automated backups** — the `backup_retention_period` NFR controls
|
||||||
automated backup retention; extend with backup windows + copy tags to
|
automated backup retention; extend with backup windows + copy tags to
|
||||||
another region for DR (SOX ITGC, DORA operational resilience).
|
another region for DR (SOX ITGC, DORA operational resilience).
|
||||||
- **Audit logging via CloudTrail** — RDS does not emit CloudTrail events
|
- **Audit logging via CloudTrail** — RDS does not emit CloudTrail events
|
||||||
for data-plane access; add `aws_db_instance_automated_backups_replication`
|
for data-plane access; add `aws_db_instance_automated_backups_replication`
|
||||||
+ CloudWatch Logs for database audit (SOX, SOC2 CC7.2, HIPAA
|
+ CloudWatch Logs for database audit (SOX, SOC2 CC7.2).
|
||||||
§164.312(b)).
|
|
||||||
- **IAM database authentication** — add `iam_database_authentication_enabled
|
- **IAM database authentication** — add `iam_database_authentication_enabled
|
||||||
= true` so IAM users/roles can authenticate to the database without
|
= true` so IAM users/roles can authenticate to the database without
|
||||||
long-lived passwords (SOC2 CC6.1, HIPAA §164.308(a)(4)).
|
long-lived passwords (SOC2 CC6.1).
|
||||||
- **Read replicas** — add `aws_db_instance` with `replicate_source_db` for
|
- **Read replicas** — add `aws_db_instance` with `replicate_source_db` for
|
||||||
read scaling and DR failover (SOC2 CC9.1, DORA operational resilience).
|
read scaling and DR failover (SOC2 CC9.1, DORA operational resilience).
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:rds:instance",
|
"type": "aws:rds:instance",
|
||||||
"description": "RDS database instance primitive (substrate-agnostic stack type aws:rds:instance; the Terraform adapter translates to aws_db_instance). Supports multiple engines (postgres, mysql, etc.) via the engine input.",
|
"description": "RDS database instance primitive (engine-agnostic stack type aws:rds:instance; the Terraform adapter translates to aws_db_instance). Supports multiple engines (postgres, mysql, etc.) via the engine input.",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"engine": {
|
"engine": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -50,11 +50,11 @@ pipeline as the regression baseline).
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **Encryption at rest** — add `aws_s3_bucket_server_side_encryption_configuration` with a customer-managed KMS key (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
- **Encryption at rest** — add `aws_s3_bucket_server_side_encryption_configuration` with a customer-managed KMS key (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Object Lock** — add `aws_s3_bucket_object_lock_configuration` in compliance mode with 7-year retention for immutable evidence (SOX §802, DORA audit trail).
|
- **Object Lock** — add `aws_s3_bucket_object_lock_configuration` in compliance mode with 7-year retention for immutable evidence (SOX §802, DORA audit trail).
|
||||||
- **Access logging** — add `aws_s3_bucket_logging` to a target logging bucket (SOC2 CC7.2).
|
- **Access logging** — add `aws_s3_bucket_logging` to a target logging bucket (SOC2 CC7.2).
|
||||||
- **Public access block** — add `aws_s3_bucket_public_access_block` to prevent data exfiltration (SOC2 CC6.1, GDPR Art.32).
|
- **Public access block** — add `aws_s3_bucket_public_access_block` to prevent data exfiltration (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **Lifecycle policy** — add `aws_s3_bucket_lifecycle_configuration` for retention enforcement (GDPR Art.5(2), HIPAA §164.530(j)).
|
- **Lifecycle policy** — add `aws_s3_bucket_lifecycle_configuration` for retention enforcement (GDPR Art.5(2).
|
||||||
|
|
||||||
## Examples
|
## Examples
|
||||||
|
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:s3:bucket",
|
"type": "aws:s3:bucket",
|
||||||
"description": "S3 bucket primitive (substrate-agnostic stack type aws:s3:bucket; the Terraform adapter translates to aws_s3_bucket).",
|
"description": "S3 bucket primitive (engine-agnostic stack type aws:s3:bucket; the Terraform adapter translates to aws_s3_bucket).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"bucket_name": {
|
"bucket_name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -72,7 +72,7 @@ pipeline as the regression baseline).
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **KMS encryption for EFS** — encrypt the EFS volume that persists uptime-kuma state with a customer-managed KMS key (SOC2 CC6.1, HIPAA §164.312(a)(2)(iv), GDPR Art.32).
|
- **KMS encryption for EFS** — encrypt the EFS volume that persists uptime-kuma state with a customer-managed KMS key (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **HTTPS/TLS for the ALB** — attach an ACM certificate and HTTPS listener to the ALB so the dashboard is served over TLS (SOC2 CC6.1, GDPR Art.32).
|
- **HTTPS/TLS for the ALB** — attach an ACM certificate and HTTPS listener to the ALB so the dashboard is served over TLS (SOC2 CC6.1, GDPR Art.32).
|
||||||
- **WAF in front of uptime dashboard** — place a WAF web ACL in front of the ALB to protect the dashboard from common exploits (SOC2 CC7.2).
|
- **WAF in front of uptime dashboard** — place a WAF web ACL in front of the ALB to protect the dashboard from common exploits (SOC2 CC7.2).
|
||||||
- **Secrets Manager for alert webhook URLs** — store Teams webhook URLs and other credentials in AWS Secrets Manager rather than plaintext inputs (SOC2 CC6.1, GDPR Art.32).
|
- **Secrets Manager for alert webhook URLs** — store Teams webhook URLs and other credentials in AWS Secrets Manager rather than plaintext inputs (SOC2 CC6.1, GDPR Art.32).
|
||||||
|
|||||||
@@ -54,8 +54,8 @@ modules reference `subnet_ids` for their network placement.
|
|||||||
|
|
||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
- **VPC Flow Logs** — add `aws_flow_log` + CloudWatch Logs group / S3 destination (SOX ITGC, SOC2 CC7.2, HIPAA §164.312(b), DORA ICT risk logging).
|
- **VPC Flow Logs** — add `aws_flow_log` + CloudWatch Logs group / S3 destination (SOX ITGC, SOC2 CC7.2, DORA ICT risk logging).
|
||||||
- **Private subnets + NAT gateway** — add private subnets with a NAT gateway so ECS tasks don't need public IPs (SOC2 CC6.6, PCI-DSS 1.3, HIPAA network isolation).
|
- **Private subnets + NAT gateway** — add private subnets with a NAT gateway so ECS tasks don't need public IPs (SOC2 CC6.6, PCI-DSS 1.3, network isolation).
|
||||||
- **VPC endpoints** — add S3, ECR, KMS, DynamoDB, CloudWatch interface/gateway endpoints to keep traffic off the public internet (SOC2 CC6.7, GDPR Art.32(1)(a), DORA ICT third-party risk).
|
- **VPC endpoints** — add S3, ECR, KMS, DynamoDB, CloudWatch interface/gateway endpoints to keep traffic off the public internet (SOC2 CC6.7, GDPR Art.32(1)(a), DORA ICT third-party risk).
|
||||||
- **Security groups** — add `aws_security_group` as a first-class sub-resource (currently missing; needed for all regulated deployments) (SOC2 CC6.6, PCI-DSS 1.2).
|
- **Security groups** — add `aws_security_group` as a first-class sub-resource (currently missing; needed for all regulated deployments) (SOC2 CC6.6, PCI-DSS 1.2).
|
||||||
- **Network ACLs** — add `aws_network_acl` for subnet-level segmentation (PCI-DSS 1.3).
|
- **Network ACLs** — add `aws_network_acl` for subnet-level segmentation (PCI-DSS 1.3).
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:ec2:vpc",
|
"type": "aws:ec2:vpc",
|
||||||
"description": "VPC primitive (substrate-agnostic stack types aws:ec2:vpc + aws:ec2:subnet + aws:ec2:routetable; the Terraform adapter translates to aws_vpc/aws_subnet/aws_route_table).",
|
"description": "VPC primitive (engine-agnostic stack types aws:ec2:vpc + aws:ec2:subnet + aws:ec2:routetable; the Terraform adapter translates to aws_vpc/aws_subnet/aws_route_table).",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"cidr": {
|
"cidr": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"kind": "l1",
|
"kind": "l1",
|
||||||
"type": "aws:wafv2:webacl",
|
"type": "aws:wafv2:webacl",
|
||||||
"description": "WAFv2 Web ACL primitive for CloudFront (substrate-agnostic stack type aws:wafv2:webacl; the Terraform adapter translates to aws_wafv2_web_acl). CloudFront-scoped WAF is always in us-east-1.",
|
"description": "WAFv2 Web ACL primitive for CloudFront (engine-agnostic stack type aws:wafv2:webacl; the Terraform adapter translates to aws_wafv2_web_acl). CloudFront-scoped WAF is always in us-east-1.",
|
||||||
"inputs": {
|
"inputs": {
|
||||||
"name": {
|
"name": {
|
||||||
"type": "string",
|
"type": "string",
|
||||||
|
|||||||
@@ -53,7 +53,7 @@ inputs:
|
|||||||
## Compliance extension points
|
## Compliance extension points
|
||||||
|
|
||||||
The pattern can wire compliance resources across primitives when the
|
The pattern can wire compliance resources across primitives when the
|
||||||
compliance milestone (GDPR, SOX, SOC2, HIPAA, DORA) lands:
|
compliance milestone (GDPR, SOX, SOC2, DORA) lands:
|
||||||
|
|
||||||
- **KMS key** — shared encryption key referenced by S3, ECR, CloudWatch Logs, and Secrets Manager.
|
- **KMS key** — shared encryption key referenced by S3, ECR, CloudWatch Logs, and Secrets Manager.
|
||||||
- **CloudTrail** — management-plane audit trail for the entire stack.
|
- **CloudTrail** — management-plane audit trail for the entire stack.
|
||||||
|
|||||||