@empire-builder-kit/nx 1.0.0-beta.9 → 1.0.0-rc.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/NOTICE +6 -0
- package/README.md +113 -3
- package/executors.json +30 -0
- package/package.json +84 -6
- package/src/api-contract/baseline-update.d.ts +82 -0
- package/src/api-contract/baseline-update.js +225 -0
- package/src/api-contract/baseline-update.js.map +1 -0
- package/src/api-contract/compatibility.d.ts +30 -0
- package/src/api-contract/compatibility.js +643 -0
- package/src/api-contract/compatibility.js.map +1 -0
- package/src/api-contract/contract-graph.d.ts +35 -0
- package/src/api-contract/contract-graph.js +141 -0
- package/src/api-contract/contract-graph.js.map +1 -0
- package/src/api-contract/evidence.d.ts +23 -0
- package/src/api-contract/evidence.js +87 -0
- package/src/api-contract/evidence.js.map +1 -0
- package/src/api-contract/index.d.ts +6 -0
- package/src/api-contract/index.js +10 -0
- package/src/api-contract/index.js.map +1 -0
- package/src/api-contract/model.d.ts +144 -0
- package/src/api-contract/model.fixtures.d.ts +2 -0
- package/src/api-contract/model.fixtures.js +81 -0
- package/src/api-contract/model.fixtures.js.map +1 -0
- package/src/api-contract/model.js +993 -0
- package/src/api-contract/model.js.map +1 -0
- package/src/api-contract/rollout.d.ts +32 -0
- package/src/api-contract/rollout.js +88 -0
- package/src/api-contract/rollout.js.map +1 -0
- package/src/authorization/compatibility.d.ts +62 -0
- package/src/authorization/compatibility.js +175 -0
- package/src/authorization/compatibility.js.map +1 -0
- package/src/authorization/index.d.ts +1 -0
- package/src/authorization/index.js +5 -0
- package/src/authorization/index.js.map +1 -0
- package/src/blueprints/execution.d.ts +25 -1
- package/src/blueprints/execution.js +246 -83
- package/src/blueprints/execution.js.map +1 -1
- package/src/blueprints/external-sandbox.d.ts +53 -0
- package/src/blueprints/external-sandbox.js +1182 -0
- package/src/blueprints/external-sandbox.js.map +1 -0
- package/src/blueprints/manifest.d.ts +42 -2
- package/src/blueprints/manifest.js +82 -27
- package/src/blueprints/manifest.js.map +1 -1
- package/src/blueprints/resolver.d.ts +14 -5
- package/src/blueprints/resolver.js +228 -68
- package/src/blueprints/resolver.js.map +1 -1
- package/src/cli/agent-command.d.ts +30 -0
- package/src/cli/agent-command.js +204 -0
- package/src/cli/agent-command.js.map +1 -0
- package/src/cli/agent-runtime.d.ts +25 -0
- package/src/cli/agent-runtime.js +488 -0
- package/src/cli/agent-runtime.js.map +1 -0
- package/src/cli/blueprint-authority.d.ts +9 -0
- package/src/cli/blueprint-authority.js +43 -0
- package/src/cli/blueprint-authority.js.map +1 -0
- package/src/cli/blueprint-command.d.ts +24 -0
- package/src/cli/blueprint-command.js +63 -0
- package/src/cli/blueprint-command.js.map +1 -0
- package/src/cli/bootstrap.d.ts +31 -0
- package/src/cli/bootstrap.js +165 -0
- package/src/cli/bootstrap.js.map +1 -0
- package/src/cli/dev-command.d.ts +92 -0
- package/src/cli/dev-command.js +561 -0
- package/src/cli/dev-command.js.map +1 -0
- package/src/cli/main.d.ts +131 -0
- package/src/cli/main.js +1199 -0
- package/src/cli/main.js.map +1 -0
- package/src/cli/output.d.ts +19 -0
- package/src/cli/output.js +51 -0
- package/src/cli/output.js.map +1 -0
- package/src/cli/personal-secret-runtime.d.ts +81 -0
- package/src/cli/personal-secret-runtime.js +567 -0
- package/src/cli/personal-secret-runtime.js.map +1 -0
- package/src/cli/secret-terminal.d.ts +12 -0
- package/src/cli/secret-terminal.js +128 -0
- package/src/cli/secret-terminal.js.map +1 -0
- package/src/container-images.d.ts +1 -0
- package/src/container-images.js +5 -0
- package/src/container-images.js.map +1 -0
- package/src/data-lifecycle/index.d.ts +3 -0
- package/src/data-lifecycle/index.js +7 -0
- package/src/data-lifecycle/index.js.map +1 -0
- package/src/data-lifecycle/model.d.ts +172 -0
- package/src/data-lifecycle/model.fixtures.d.ts +2 -0
- package/src/data-lifecycle/model.fixtures.js +244 -0
- package/src/data-lifecycle/model.fixtures.js.map +1 -0
- package/src/data-lifecycle/model.js +95 -0
- package/src/data-lifecycle/model.js.map +1 -0
- package/src/data-lifecycle/sensitive-artifacts.d.ts +28 -0
- package/src/data-lifecycle/sensitive-artifacts.js +146 -0
- package/src/data-lifecycle/sensitive-artifacts.js.map +1 -0
- package/src/data-lifecycle/validation.d.ts +32 -0
- package/src/data-lifecycle/validation.js +837 -0
- package/src/data-lifecycle/validation.js.map +1 -0
- package/src/database-retirement/contract.d.ts +68 -0
- package/src/database-retirement/contract.js +166 -0
- package/src/database-retirement/contract.js.map +1 -0
- package/src/database-retirement/index.d.ts +1 -0
- package/src/database-retirement/index.js +5 -0
- package/src/database-retirement/index.js.map +1 -0
- package/src/deterministic-order.d.ts +2 -0
- package/src/deterministic-order.js +7 -0
- package/src/deterministic-order.js.map +1 -0
- package/src/developer-agent/context.d.ts +27 -0
- package/src/developer-agent/context.js +497 -0
- package/src/developer-agent/context.js.map +1 -0
- package/src/developer-agent/generator-planning.d.ts +34 -0
- package/src/developer-agent/generator-planning.js +645 -0
- package/src/developer-agent/generator-planning.js.map +1 -0
- package/src/developer-agent/generator-preview.d.ts +8 -0
- package/src/developer-agent/generator-preview.js +650 -0
- package/src/developer-agent/generator-preview.js.map +1 -0
- package/src/developer-agent/git-inspection.d.ts +108 -0
- package/src/developer-agent/git-inspection.js +815 -0
- package/src/developer-agent/git-inspection.js.map +1 -0
- package/src/developer-agent/handoff.d.ts +43 -0
- package/src/developer-agent/handoff.js +698 -0
- package/src/developer-agent/handoff.js.map +1 -0
- package/src/developer-agent/index.d.ts +10 -0
- package/src/developer-agent/index.js +14 -0
- package/src/developer-agent/index.js.map +1 -0
- package/src/developer-agent/model.d.ts +481 -0
- package/src/developer-agent/model.js +143 -0
- package/src/developer-agent/model.js.map +1 -0
- package/src/developer-agent/operation-registry.d.ts +45 -0
- package/src/developer-agent/operation-registry.js +1255 -0
- package/src/developer-agent/operation-registry.js.map +1 -0
- package/src/developer-agent/ordering.d.ts +9 -0
- package/src/developer-agent/ordering.js +15 -0
- package/src/developer-agent/ordering.js.map +1 -0
- package/src/developer-agent/planning.d.ts +18 -0
- package/src/developer-agent/planning.js +447 -0
- package/src/developer-agent/planning.js.map +1 -0
- package/src/developer-agent/preview-changes.d.ts +26 -0
- package/src/developer-agent/preview-changes.js +203 -0
- package/src/developer-agent/preview-changes.js.map +1 -0
- package/src/developer-agent/preview-source.d.ts +2 -0
- package/src/developer-agent/preview-source.js +16 -0
- package/src/developer-agent/preview-source.js.map +1 -0
- package/src/developer-agent/validation.d.ts +18 -0
- package/src/developer-agent/validation.js +2617 -0
- package/src/developer-agent/validation.js.map +1 -0
- package/src/developer-agent/workspace-inspection.d.ts +20 -0
- package/src/developer-agent/workspace-inspection.js +1134 -0
- package/src/developer-agent/workspace-inspection.js.map +1 -0
- package/src/developer-agent/workspace-path.d.ts +6 -0
- package/src/developer-agent/workspace-path.js +22 -0
- package/src/developer-agent/workspace-path.js.map +1 -0
- package/src/executors/blueprint-trust/blueprint-trust.d.ts +29 -0
- package/src/executors/blueprint-trust/blueprint-trust.js +115 -0
- package/src/executors/blueprint-trust/blueprint-trust.js.map +1 -0
- package/src/executors/blueprint-trust/schema.json +27 -0
- package/src/executors/blueprint-verification/blueprint-verification.d.ts +13 -0
- package/src/executors/blueprint-verification/blueprint-verification.js +110 -0
- package/src/executors/blueprint-verification/blueprint-verification.js.map +1 -0
- package/src/executors/blueprint-verification/schema.json +44 -0
- package/src/executors/deployment-plan/deployment-plan.js +1 -0
- package/src/executors/deployment-plan/deployment-plan.js.map +1 -1
- package/src/executors/dev-doctor/dev-doctor.d.ts +19 -5
- package/src/executors/dev-doctor/dev-doctor.js +186 -32
- package/src/executors/dev-doctor/dev-doctor.js.map +1 -1
- package/src/executors/dev-doctor/schema.json +1 -6
- package/src/executors/dev-setup/dev-setup.d.ts +7 -1
- package/src/executors/dev-setup/dev-setup.js +14 -3
- package/src/executors/dev-setup/dev-setup.js.map +1 -1
- package/src/executors/developer-context/developer-context.d.ts +38 -0
- package/src/executors/developer-context/developer-context.js +78 -0
- package/src/executors/developer-context/developer-context.js.map +1 -0
- package/src/executors/developer-context/schema.json +87 -0
- package/src/executors/fleet/fleet.d.ts +12 -43
- package/src/executors/fleet/fleet.js +120 -500
- package/src/executors/fleet/fleet.js.map +1 -1
- package/src/executors/fleet/schema.json +64 -14
- package/src/executors/github-bootstrap/github-bootstrap.d.ts +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js +1 -0
- package/src/executors/github-bootstrap/github-bootstrap.js.map +1 -1
- package/src/executors/github-bootstrap/schema.json +5 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.d.ts +144 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js +3320 -0
- package/src/executors/infrastructure-plan/infrastructure-plan.js.map +1 -0
- package/src/executors/infrastructure-plan/schema.json +78 -0
- package/src/executors/secret-guardrails/schema.json +6 -0
- package/src/executors/secret-guardrails/secret-guardrails.d.ts +3 -0
- package/src/executors/secret-guardrails/secret-guardrails.js +44 -0
- package/src/executors/secret-guardrails/secret-guardrails.js.map +1 -0
- package/src/executors/secret-metadata/schema.json +31 -0
- package/src/executors/secret-metadata/secret-metadata.d.ts +32 -0
- package/src/executors/secret-metadata/secret-metadata.js +131 -0
- package/src/executors/secret-metadata/secret-metadata.js.map +1 -0
- package/src/executors/sst-lifecycle/logging-preflight.d.ts +17 -0
- package/src/executors/sst-lifecycle/logging-preflight.js +196 -0
- package/src/executors/sst-lifecycle/logging-preflight.js.map +1 -0
- package/src/executors/sst-lifecycle/run-sst-command.d.ts +23 -3
- package/src/executors/sst-lifecycle/run-sst-command.js +113 -10
- package/src/executors/sst-lifecycle/run-sst-command.js.map +1 -1
- package/src/executors/sst-lifecycle/schema.json +9 -5
- package/src/executors/sst-lifecycle/secret-preflight.d.ts +25 -0
- package/src/executors/sst-lifecycle/secret-preflight.js +119 -0
- package/src/executors/sst-lifecycle/secret-preflight.js.map +1 -0
- package/src/foundation/discovery.d.ts +17 -1
- package/src/foundation/discovery.js +16 -1
- package/src/foundation/discovery.js.map +1 -1
- package/src/foundation/index.d.ts +3 -0
- package/src/foundation/index.js +3 -0
- package/src/foundation/index.js.map +1 -1
- package/src/foundation/local-database-contract.d.ts +1 -0
- package/src/foundation/local-database-contract.js +3 -0
- package/src/foundation/local-database-contract.js.map +1 -1
- package/src/foundation/logging-preflight.d.ts +30 -0
- package/src/foundation/logging-preflight.js +138 -0
- package/src/foundation/logging-preflight.js.map +1 -0
- package/src/foundation/logging.d.ts +70 -0
- package/src/foundation/logging.js +133 -0
- package/src/foundation/logging.js.map +1 -0
- package/src/foundation/preflight.d.ts +9 -0
- package/src/foundation/preflight.js +58 -2
- package/src/foundation/preflight.js.map +1 -1
- package/src/foundation/provision-database-bindings.d.ts +9 -1
- package/src/foundation/provision-database-bindings.js +25 -5
- package/src/foundation/provision-database-bindings.js.map +1 -1
- package/src/foundation/provision-logical-database.d.ts +10 -2
- package/src/foundation/provision-logical-database.js +68 -113
- package/src/foundation/provision-logical-database.js.map +1 -1
- package/src/foundation/router-origin-proof.d.ts +2 -0
- package/src/foundation/router-origin-proof.js +25 -0
- package/src/foundation/router-origin-proof.js.map +1 -0
- package/src/foundation/stages.d.ts +1 -0
- package/src/foundation/stages.js +9 -1
- package/src/foundation/stages.js.map +1 -1
- package/src/frontend-security/index.d.ts +1 -0
- package/src/frontend-security/index.js +5 -0
- package/src/frontend-security/index.js.map +1 -0
- package/src/frontend-security/security-headers.d.ts +50 -0
- package/src/frontend-security/security-headers.js +418 -0
- package/src/frontend-security/security-headers.js.map +1 -0
- package/src/generators/feature-registry.d.ts +13 -0
- package/src/generators/feature-registry.js +73 -0
- package/src/generators/feature-registry.js.map +1 -0
- package/src/generators/function/function.d.ts +1 -1
- package/src/generators/function/function.js +51 -6
- package/src/generators/function/function.js.map +1 -1
- package/src/generators/function/schema.d.ts +1 -0
- package/src/generators/function/schema.json +6 -1
- package/src/generators/logging-registry.d.ts +13 -0
- package/src/generators/logging-registry.js +62 -0
- package/src/generators/logging-registry.js.map +1 -0
- package/src/generators/post-generation-install.d.ts +67 -0
- package/src/generators/post-generation-install.js +3308 -0
- package/src/generators/post-generation-install.js.map +1 -0
- package/src/generators/preset/generator.js +3 -0
- package/src/generators/preset/generator.js.map +1 -1
- package/src/generators/preset/tool-versions.d.ts +18 -0
- package/src/generators/preset/tool-versions.js +22 -0
- package/src/generators/preset/tool-versions.js.map +1 -0
- package/src/generators/preset/workspace-files-developer-agent.d.ts +14 -0
- package/src/generators/preset/workspace-files-developer-agent.js +511 -0
- package/src/generators/preset/workspace-files-developer-agent.js.map +1 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.d.ts +6 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js +406 -0
- package/src/generators/preset/workspace-files-foundation-workload-roles.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-cost.d.ts +66 -0
- package/src/generators/preset/workspace-files-performance-cost.js +866 -0
- package/src/generators/preset/workspace-files-performance-cost.js.map +1 -0
- package/src/generators/preset/workspace-files-performance-load.d.ts +73 -0
- package/src/generators/preset/workspace-files-performance-load.js +801 -0
- package/src/generators/preset/workspace-files-performance-load.js.map +1 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.d.ts +9 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js +1102 -0
- package/src/generators/preset/workspace-files-workload-role-baseline.js.map +1 -0
- package/src/generators/preset/workspace-files.d.ts +14 -1
- package/src/generators/preset/workspace-files.js +8189 -245
- package/src/generators/preset/workspace-files.js.map +1 -1
- package/src/generators/repository-policy/repository-policy.js +3 -47
- package/src/generators/repository-policy/repository-policy.js.map +1 -1
- package/src/generators/slice/built-in-plan-api-contract-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js +2656 -0
- package/src/generators/slice/built-in-plan-api-contract-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-api-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-api-files.js +1186 -0
- package/src/generators/slice/built-in-plan-api-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-async-work-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-async-work-files.js +7903 -0
- package/src/generators/slice/built-in-plan-async-work-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-files.js +2314 -0
- package/src/generators/slice/built-in-plan-authorization-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js +559 -0
- package/src/generators/slice/built-in-plan-authorization-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js +1101 -0
- package/src/generators/slice/built-in-plan-data-deletion-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js +249 -0
- package/src/generators/slice/built-in-plan-data-export-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-files.js +1530 -0
- package/src/generators/slice/built-in-plan-data-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js +750 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js +828 -0
- package/src/generators/slice/built-in-plan-data-lifecycle-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js +2604 -0
- package/src/generators/slice/built-in-plan-data-retention-job-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js +144 -0
- package/src/generators/slice/built-in-plan-data-retention-launcher-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-data-rights-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js +4628 -0
- package/src/generators/slice/built-in-plan-data-rights-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js +1901 -0
- package/src/generators/slice/built-in-plan-database-lifecycle-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js +485 -0
- package/src/generators/slice/built-in-plan-database-retirement-rehearsal-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-foundation-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-foundation-files.js +184 -0
- package/src/generators/slice/built-in-plan-foundation-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-frontend-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-frontend-files.js +2233 -0
- package/src/generators/slice/built-in-plan-frontend-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js +3038 -0
- package/src/generators/slice/built-in-plan-infrastructure-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js +312 -0
- package/src/generators/slice/built-in-plan-infrastructure-safety-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-metadata-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-metadata-files.js +219 -0
- package/src/generators/slice/built-in-plan-metadata-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-operations-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-operations-files.js +630 -0
- package/src/generators/slice/built-in-plan-operations-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-performance-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-performance-files.js +3293 -0
- package/src/generators/slice/built-in-plan-performance-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-project-files.d.ts +3 -0
- package/src/generators/slice/built-in-plan-project-files.js +979 -0
- package/src/generators/slice/built-in-plan-project-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-release-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-release-files.js +6387 -0
- package/src/generators/slice/built-in-plan-release-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-reliability-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-reliability-files.js +4499 -0
- package/src/generators/slice/built-in-plan-reliability-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js +1004 -0
- package/src/generators/slice/built-in-plan-secret-runtime-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-shared.d.ts +53 -0
- package/src/generators/slice/built-in-plan-shared.js +113 -0
- package/src/generators/slice/built-in-plan-shared.js.map +1 -0
- package/src/generators/slice/built-in-plan-testing-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-testing-files.js +2356 -0
- package/src/generators/slice/built-in-plan-testing-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-verification-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-verification-files.js +358 -0
- package/src/generators/slice/built-in-plan-verification-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-web-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-web-files.js +430 -0
- package/src/generators/slice/built-in-plan-web-files.js.map +1 -0
- package/src/generators/slice/built-in-plan-workload-role-files.d.ts +2 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js +2356 -0
- package/src/generators/slice/built-in-plan-workload-role-files.js.map +1 -0
- package/src/generators/slice/built-in-plan.d.ts +8 -0
- package/src/generators/slice/built-in-plan.js +264 -0
- package/src/generators/slice/built-in-plan.js.map +1 -0
- package/src/generators/slice/schema.json +1 -1
- package/src/generators/slice/slice.d.ts +1 -22
- package/src/generators/slice/slice.js +185 -1510
- package/src/generators/slice/slice.js.map +1 -1
- package/src/generators/upgrade/schema.d.ts +2 -0
- package/src/generators/upgrade/schema.json +11 -1
- package/src/generators/upgrade/upgrade.d.ts +51 -1
- package/src/generators/upgrade/upgrade.js +820 -82
- package/src/generators/upgrade/upgrade.js.map +1 -1
- package/src/generators/workload/frozen-container.d.ts +8 -0
- package/src/generators/workload/frozen-container.js +36 -0
- package/src/generators/workload/frozen-container.js.map +1 -0
- package/src/generators/workload/performance-registration.d.ts +32 -0
- package/src/generators/workload/performance-registration.js +226 -0
- package/src/generators/workload/performance-registration.js.map +1 -0
- package/src/generators/workload/reliability-registration.d.ts +16 -0
- package/src/generators/workload/reliability-registration.js +150 -0
- package/src/generators/workload/reliability-registration.js.map +1 -0
- package/src/generators/workload/schema.d.ts +1 -0
- package/src/generators/workload/schema.json +6 -1
- package/src/generators/workload/service-performance-files.d.ts +4 -0
- package/src/generators/workload/service-performance-files.js +1846 -0
- package/src/generators/workload/service-performance-files.js.map +1 -0
- package/src/generators/workload/workload.d.ts +3 -2
- package/src/generators/workload/workload.js +1083 -18
- package/src/generators/workload/workload.js.map +1 -1
- package/src/git-policy/action-pins.d.ts +10 -0
- package/src/git-policy/action-pins.js +10 -0
- package/src/git-policy/action-pins.js.map +1 -1
- package/src/git-policy/github-bootstrap.d.ts +14 -1
- package/src/git-policy/github-bootstrap.js +274 -46
- package/src/git-policy/github-bootstrap.js.map +1 -1
- package/src/index.d.ts +2 -0
- package/src/index.js +2 -0
- package/src/index.js.map +1 -1
- package/src/infrastructure-change/convergence.d.ts +13 -0
- package/src/infrastructure-change/convergence.js +85 -0
- package/src/infrastructure-change/convergence.js.map +1 -0
- package/src/infrastructure-change/drift.d.ts +13 -0
- package/src/infrastructure-change/drift.js +112 -0
- package/src/infrastructure-change/drift.js.map +1 -0
- package/src/infrastructure-change/index.d.ts +7 -0
- package/src/infrastructure-change/index.js +11 -0
- package/src/infrastructure-change/index.js.map +1 -0
- package/src/infrastructure-change/model.d.ts +253 -0
- package/src/infrastructure-change/model.js +28 -0
- package/src/infrastructure-change/model.js.map +1 -0
- package/src/infrastructure-change/normalize.d.ts +12 -0
- package/src/infrastructure-change/normalize.js +245 -0
- package/src/infrastructure-change/normalize.js.map +1 -0
- package/src/infrastructure-change/plan.d.ts +40 -0
- package/src/infrastructure-change/plan.js +361 -0
- package/src/infrastructure-change/plan.js.map +1 -0
- package/src/infrastructure-change/risk.d.ts +7 -0
- package/src/infrastructure-change/risk.js +269 -0
- package/src/infrastructure-change/risk.js.map +1 -0
- package/src/infrastructure-change/summary.d.ts +20 -0
- package/src/infrastructure-change/summary.js +130 -0
- package/src/infrastructure-change/summary.js.map +1 -0
- package/src/local-dev/context-discovery.d.ts +2 -0
- package/src/local-dev/context-discovery.js +59 -0
- package/src/local-dev/context-discovery.js.map +1 -0
- package/src/local-dev/contract-validation.d.ts +15 -0
- package/src/local-dev/contract-validation.js +84 -0
- package/src/local-dev/contract-validation.js.map +1 -0
- package/src/local-dev/contracts.d.ts +10 -1
- package/src/local-dev/contracts.js +57 -5
- package/src/local-dev/contracts.js.map +1 -1
- package/src/local-dev/control-contract.d.ts +67 -0
- package/src/local-dev/control-contract.js +180 -0
- package/src/local-dev/control-contract.js.map +1 -0
- package/src/local-dev/dev-command-core.d.ts +60 -0
- package/src/local-dev/dev-command-core.js +89 -0
- package/src/local-dev/dev-command-core.js.map +1 -0
- package/src/local-dev/effects.d.ts +16 -0
- package/src/local-dev/effects.js +63 -0
- package/src/local-dev/effects.js.map +1 -0
- package/src/local-dev/environment-inspector.d.ts +125 -0
- package/src/local-dev/environment-inspector.js +687 -0
- package/src/local-dev/environment-inspector.js.map +1 -0
- package/src/local-dev/environment-state.d.ts +113 -0
- package/src/local-dev/environment-state.js +463 -0
- package/src/local-dev/environment-state.js.map +1 -0
- package/src/local-dev/errors.d.ts +6 -0
- package/src/local-dev/errors.js +41 -0
- package/src/local-dev/errors.js.map +1 -0
- package/src/local-dev/fleet-client.d.ts +33 -0
- package/src/local-dev/fleet-client.js +156 -0
- package/src/local-dev/fleet-client.js.map +1 -0
- package/src/local-dev/fleet-configuration.d.ts +13 -0
- package/src/local-dev/fleet-configuration.js +71 -0
- package/src/local-dev/fleet-configuration.js.map +1 -0
- package/src/local-dev/fleet-inventory.d.ts +56 -0
- package/src/local-dev/fleet-inventory.js +469 -0
- package/src/local-dev/fleet-inventory.js.map +1 -0
- package/src/local-dev/fleet-ipc.d.ts +28 -0
- package/src/local-dev/fleet-ipc.js +267 -0
- package/src/local-dev/fleet-ipc.js.map +1 -0
- package/src/local-dev/fleet-launcher.d.ts +53 -0
- package/src/local-dev/fleet-launcher.js +379 -0
- package/src/local-dev/fleet-launcher.js.map +1 -0
- package/src/local-dev/fleet-lock.d.ts +41 -0
- package/src/local-dev/fleet-lock.js +135 -0
- package/src/local-dev/fleet-lock.js.map +1 -0
- package/src/local-dev/fleet-logs.d.ts +66 -0
- package/src/local-dev/fleet-logs.js +542 -0
- package/src/local-dev/fleet-logs.js.map +1 -0
- package/src/local-dev/fleet-process.d.ts +50 -0
- package/src/local-dev/fleet-process.js +289 -0
- package/src/local-dev/fleet-process.js.map +1 -0
- package/src/local-dev/fleet-runtime.d.ts +22 -0
- package/src/local-dev/fleet-runtime.js +368 -0
- package/src/local-dev/fleet-runtime.js.map +1 -0
- package/src/local-dev/fleet-session.d.ts +70 -0
- package/src/local-dev/fleet-session.js +301 -0
- package/src/local-dev/fleet-session.js.map +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.d.ts +1 -0
- package/src/local-dev/fleet-slice-runner-daemon.js +21 -0
- package/src/local-dev/fleet-slice-runner-daemon.js.map +1 -0
- package/src/local-dev/fleet-startup.d.ts +22 -0
- package/src/local-dev/fleet-startup.js +114 -0
- package/src/local-dev/fleet-startup.js.map +1 -0
- package/src/local-dev/fleet-state.d.ts +62 -0
- package/src/local-dev/fleet-state.js +297 -0
- package/src/local-dev/fleet-state.js.map +1 -0
- package/src/local-dev/fleet-supervisor-daemon.d.ts +1 -0
- package/src/local-dev/fleet-supervisor-daemon.js +41 -0
- package/src/local-dev/fleet-supervisor-daemon.js.map +1 -0
- package/src/local-dev/fleet-supervisor.d.ts +52 -0
- package/src/local-dev/fleet-supervisor.js +384 -0
- package/src/local-dev/fleet-supervisor.js.map +1 -0
- package/src/local-dev/gateway.js +1 -1
- package/src/local-dev/gateway.js.map +1 -1
- package/src/local-dev/identity.js +4 -6
- package/src/local-dev/identity.js.map +1 -1
- package/src/local-dev/index.d.ts +1 -0
- package/src/local-dev/index.js +1 -0
- package/src/local-dev/index.js.map +1 -1
- package/src/local-dev/local-context.d.ts +62 -0
- package/src/local-dev/local-context.js +299 -0
- package/src/local-dev/local-context.js.map +1 -0
- package/src/local-dev/nx-workspace.d.ts +45 -0
- package/src/local-dev/nx-workspace.js +228 -0
- package/src/local-dev/nx-workspace.js.map +1 -0
- package/src/local-dev/personal-secret-ledger.d.ts +75 -0
- package/src/local-dev/personal-secret-ledger.js +391 -0
- package/src/local-dev/personal-secret-ledger.js.map +1 -0
- package/src/local-dev/personal-stage.d.ts +18 -0
- package/src/local-dev/personal-stage.js +129 -0
- package/src/local-dev/personal-stage.js.map +1 -0
- package/src/local-dev/private-state.d.ts +17 -0
- package/src/local-dev/private-state.js +254 -0
- package/src/local-dev/private-state.js.map +1 -0
- package/src/local-dev/process-identity.d.ts +9 -0
- package/src/local-dev/process-identity.js +79 -0
- package/src/local-dev/process-identity.js.map +1 -0
- package/src/local-dev/runtime-paths.d.ts +17 -0
- package/src/local-dev/runtime-paths.js +33 -0
- package/src/local-dev/runtime-paths.js.map +1 -0
- package/src/local-dev/secret-slice-claim.d.ts +17 -0
- package/src/local-dev/secret-slice-claim.js +75 -0
- package/src/local-dev/secret-slice-claim.js.map +1 -0
- package/src/local-dev/slice-claim.d.ts +36 -0
- package/src/local-dev/slice-claim.js +199 -0
- package/src/local-dev/slice-claim.js.map +1 -0
- package/src/local-dev/slice-runner.d.ts +121 -0
- package/src/local-dev/slice-runner.js +715 -0
- package/src/local-dev/slice-runner.js.map +1 -0
- package/src/local-dev/tls.js +51 -17
- package/src/local-dev/tls.js.map +1 -1
- package/src/ownership/composition.d.ts +5 -2
- package/src/ownership/composition.js +26 -3
- package/src/ownership/composition.js.map +1 -1
- package/src/ownership/hash.d.ts +1 -1
- package/src/ownership/hash.js +3 -1
- package/src/ownership/hash.js.map +1 -1
- package/src/ownership/record.d.ts +32 -1
- package/src/ownership/record.js +139 -2
- package/src/ownership/record.js.map +1 -1
- package/src/performance/cost-collection.d.ts +225 -0
- package/src/performance/cost-collection.js +825 -0
- package/src/performance/cost-collection.js.map +1 -0
- package/src/performance/cost-controls.d.ts +131 -0
- package/src/performance/cost-controls.js +336 -0
- package/src/performance/cost-controls.js.map +1 -0
- package/src/performance/evidence.d.ts +140 -0
- package/src/performance/evidence.js +599 -0
- package/src/performance/evidence.js.map +1 -0
- package/src/performance/index.d.ts +10 -0
- package/src/performance/index.js +14 -0
- package/src/performance/index.js.map +1 -0
- package/src/performance/load-safety.d.ts +84 -0
- package/src/performance/load-safety.js +346 -0
- package/src/performance/load-safety.js.map +1 -0
- package/src/performance/model.d.ts +129 -0
- package/src/performance/model.js +452 -0
- package/src/performance/model.js.map +1 -0
- package/src/performance/pr-artifact-budget.d.ts +42 -0
- package/src/performance/pr-artifact-budget.js +151 -0
- package/src/performance/pr-artifact-budget.js.map +1 -0
- package/src/performance/runner.d.ts +75 -0
- package/src/performance/runner.js +227 -0
- package/src/performance/runner.js.map +1 -0
- package/src/performance/scenario-endpoint.d.ts +1 -0
- package/src/performance/scenario-endpoint.js +5 -0
- package/src/performance/scenario-endpoint.js.map +1 -0
- package/src/performance/scenario.d.ts +193 -0
- package/src/performance/scenario.js +736 -0
- package/src/performance/scenario.js.map +1 -0
- package/src/performance/test-fixtures.d.ts +7 -0
- package/src/performance/test-fixtures.js +169 -0
- package/src/performance/test-fixtures.js.map +1 -0
- package/src/performance/unit-cost.d.ts +105 -0
- package/src/performance/unit-cost.js +364 -0
- package/src/performance/unit-cost.js.map +1 -0
- package/src/release/index.d.ts +4 -0
- package/src/release/index.js +8 -0
- package/src/release/index.js.map +1 -0
- package/src/release/lifecycle.d.ts +132 -0
- package/src/release/lifecycle.js +411 -0
- package/src/release/lifecycle.js.map +1 -0
- package/src/release/manifest.d.ts +148 -0
- package/src/release/manifest.js +503 -0
- package/src/release/manifest.js.map +1 -0
- package/src/release/rollout.d.ts +170 -0
- package/src/release/rollout.js +578 -0
- package/src/release/rollout.js.map +1 -0
- package/src/release/source-authority.d.ts +19 -0
- package/src/release/source-authority.js +195 -0
- package/src/release/source-authority.js.map +1 -0
- package/src/repository-policy/deployment-plan.d.ts +2 -1
- package/src/repository-policy/deployment-plan.js +2 -0
- package/src/repository-policy/deployment-plan.js.map +1 -1
- package/src/repository-policy/policy.d.ts +1 -1
- package/src/repository-policy/policy.js +29 -25
- package/src/repository-policy/policy.js.map +1 -1
- package/src/schemas/aggregate-count-evidence-v1.json +135 -0
- package/src/schemas/api-contract-baseline-v1.json +674 -0
- package/src/schemas/api-contract-compatibility-report-v1.json +126 -0
- package/src/schemas/aws-billing-actual-evidence-v1.json +407 -0
- package/src/schemas/blueprint-v1.json +18 -1
- package/src/schemas/data-lifecycle-policy-v1.json +517 -0
- package/src/schemas/generated-ownership-v2.json +22 -0
- package/src/schemas/performance-policy-v1.json +335 -0
- package/src/schemas/repository-policy-v1.json +1 -0
- package/src/schemas/testing-evidence-quarantine-v1.json +168 -0
- package/src/schemas/testing-evidence-result-v1.json +319 -0
- package/src/secrets/adapters.d.ts +49 -0
- package/src/secrets/adapters.js +184 -0
- package/src/secrets/adapters.js.map +1 -0
- package/src/secrets/aws-control-plane.d.ts +20 -0
- package/src/secrets/aws-control-plane.js +255 -0
- package/src/secrets/aws-control-plane.js.map +1 -0
- package/src/secrets/declaration-verification.d.ts +11 -0
- package/src/secrets/declaration-verification.js +68 -0
- package/src/secrets/declaration-verification.js.map +1 -0
- package/src/secrets/guardrails.d.ts +26 -0
- package/src/secrets/guardrails.js +328 -0
- package/src/secrets/guardrails.js.map +1 -0
- package/src/secrets/index.d.ts +12 -0
- package/src/secrets/index.js +16 -0
- package/src/secrets/index.js.map +1 -0
- package/src/secrets/metadata.d.ts +48 -0
- package/src/secrets/metadata.js +171 -0
- package/src/secrets/metadata.js.map +1 -0
- package/src/secrets/model.d.ts +49 -0
- package/src/secrets/model.js +125 -0
- package/src/secrets/model.js.map +1 -0
- package/src/secrets/operator.d.ts +101 -0
- package/src/secrets/operator.js +229 -0
- package/src/secrets/operator.js.map +1 -0
- package/src/secrets/permissions.d.ts +34 -0
- package/src/secrets/permissions.js +86 -0
- package/src/secrets/permissions.js.map +1 -0
- package/src/secrets/personal-command.d.ts +83 -0
- package/src/secrets/personal-command.js +197 -0
- package/src/secrets/personal-command.js.map +1 -0
- package/src/secrets/personal-ledger.d.ts +21 -0
- package/src/secrets/personal-ledger.js +135 -0
- package/src/secrets/personal-ledger.js.map +1 -0
- package/src/secrets/registry.d.ts +9 -0
- package/src/secrets/registry.js +86 -0
- package/src/secrets/registry.js.map +1 -0
- package/src/secrets/verification.d.ts +18 -0
- package/src/secrets/verification.js +139 -0
- package/src/secrets/verification.js.map +1 -0
- package/src/secrets/workload-access.d.ts +46 -0
- package/src/secrets/workload-access.js +163 -0
- package/src/secrets/workload-access.js.map +1 -0
- package/src/supply-chain/action-pins.d.ts +26 -0
- package/src/supply-chain/action-pins.js +208 -0
- package/src/supply-chain/action-pins.js.map +1 -0
- package/src/supply-chain/blueprint-trust-git.d.ts +130 -0
- package/src/supply-chain/blueprint-trust-git.js +1581 -0
- package/src/supply-chain/blueprint-trust-git.js.map +1 -0
- package/src/supply-chain/blueprint-trust-process.d.ts +4 -0
- package/src/supply-chain/blueprint-trust-process.js +88 -0
- package/src/supply-chain/blueprint-trust-process.js.map +1 -0
- package/src/supply-chain/blueprint-trust.d.ts +354 -0
- package/src/supply-chain/blueprint-trust.js +1558 -0
- package/src/supply-chain/blueprint-trust.js.map +1 -0
- package/src/supply-chain/blueprint-verification-authority.d.ts +62 -0
- package/src/supply-chain/blueprint-verification-authority.js +588 -0
- package/src/supply-chain/blueprint-verification-authority.js.map +1 -0
- package/src/supply-chain/blueprint-verification-execution.d.ts +68 -0
- package/src/supply-chain/blueprint-verification-execution.js +624 -0
- package/src/supply-chain/blueprint-verification-execution.js.map +1 -0
- package/src/supply-chain/build-output.d.ts +35 -0
- package/src/supply-chain/build-output.js +398 -0
- package/src/supply-chain/build-output.js.map +1 -0
- package/src/supply-chain/common.d.ts +21 -0
- package/src/supply-chain/common.js +107 -0
- package/src/supply-chain/common.js.map +1 -0
- package/src/supply-chain/container-artifact-contract.d.ts +23 -0
- package/src/supply-chain/container-artifact-contract.js +208 -0
- package/src/supply-chain/container-artifact-contract.js.map +1 -0
- package/src/supply-chain/container-release.d.ts +119 -0
- package/src/supply-chain/container-release.js +496 -0
- package/src/supply-chain/container-release.js.map +1 -0
- package/src/supply-chain/ecr-applicability.d.ts +19 -0
- package/src/supply-chain/ecr-applicability.js +103 -0
- package/src/supply-chain/ecr-applicability.js.map +1 -0
- package/src/supply-chain/ecr-scanning.d.ts +83 -0
- package/src/supply-chain/ecr-scanning.js +321 -0
- package/src/supply-chain/ecr-scanning.js.map +1 -0
- package/src/supply-chain/ecs-deployed-image.d.ts +85 -0
- package/src/supply-chain/ecs-deployed-image.js +300 -0
- package/src/supply-chain/ecs-deployed-image.js.map +1 -0
- package/src/supply-chain/errors.d.ts +6 -0
- package/src/supply-chain/errors.js +15 -0
- package/src/supply-chain/errors.js.map +1 -0
- package/src/supply-chain/generated-blueprint-trust-command.d.ts +4 -0
- package/src/supply-chain/generated-blueprint-trust-command.js +1362 -0
- package/src/supply-chain/generated-blueprint-trust-command.js.map +1 -0
- package/src/supply-chain/generated-command.d.ts +1 -0
- package/src/supply-chain/generated-command.js +687 -0
- package/src/supply-chain/generated-command.js.map +1 -0
- package/src/supply-chain/generated-container-release-command.d.ts +16 -0
- package/src/supply-chain/generated-container-release-command.js +2087 -0
- package/src/supply-chain/generated-container-release-command.js.map +1 -0
- package/src/supply-chain/generated-ecr-collector-command.d.ts +21 -0
- package/src/supply-chain/generated-ecr-collector-command.js +1338 -0
- package/src/supply-chain/generated-ecr-collector-command.js.map +1 -0
- package/src/supply-chain/generated-files.d.ts +13 -0
- package/src/supply-chain/generated-files.js +401 -0
- package/src/supply-chain/generated-files.js.map +1 -0
- package/src/supply-chain/generated-scanner-command.d.ts +1 -0
- package/src/supply-chain/generated-scanner-command.js +718 -0
- package/src/supply-chain/generated-scanner-command.js.map +1 -0
- package/src/supply-chain/index.d.ts +28 -0
- package/src/supply-chain/index.js +35 -0
- package/src/supply-chain/index.js.map +1 -0
- package/src/supply-chain/inventory.d.ts +79 -0
- package/src/supply-chain/inventory.js +717 -0
- package/src/supply-chain/inventory.js.map +1 -0
- package/src/supply-chain/license-expression.d.ts +7 -0
- package/src/supply-chain/license-expression.js +128 -0
- package/src/supply-chain/license-expression.js.map +1 -0
- package/src/supply-chain/pnpm-toolchain-authority.d.ts +31 -0
- package/src/supply-chain/pnpm-toolchain-authority.js +316 -0
- package/src/supply-chain/pnpm-toolchain-authority.js.map +1 -0
- package/src/supply-chain/policy.d.ts +105 -0
- package/src/supply-chain/policy.js +301 -0
- package/src/supply-chain/policy.js.map +1 -0
- package/src/supply-chain/publication.d.ts +48 -0
- package/src/supply-chain/publication.js +85 -0
- package/src/supply-chain/publication.js.map +1 -0
- package/src/supply-chain/sbom.d.ts +228 -0
- package/src/supply-chain/sbom.js +826 -0
- package/src/supply-chain/sbom.js.map +1 -0
- package/src/supply-chain/scanner.d.ts +77 -0
- package/src/supply-chain/scanner.js +502 -0
- package/src/supply-chain/scanner.js.map +1 -0
- package/src/supply-chain/vendored-source.d.ts +95 -0
- package/src/supply-chain/vendored-source.js +315 -0
- package/src/supply-chain/vendored-source.js.map +1 -0
- package/src/testing-evidence/fixture-scope.d.ts +52 -0
- package/src/testing-evidence/fixture-scope.js +140 -0
- package/src/testing-evidence/fixture-scope.js.map +1 -0
- package/src/testing-evidence/index.d.ts +5 -0
- package/src/testing-evidence/index.js +9 -0
- package/src/testing-evidence/index.js.map +1 -0
- package/src/testing-evidence/quarantine.d.ts +48 -0
- package/src/testing-evidence/quarantine.js +253 -0
- package/src/testing-evidence/quarantine.js.map +1 -0
- package/src/testing-evidence/result.d.ts +108 -0
- package/src/testing-evidence/result.js +571 -0
- package/src/testing-evidence/result.js.map +1 -0
- package/src/testing-evidence/runner-adapter.d.ts +51 -0
- package/src/testing-evidence/runner-adapter.js +288 -0
- package/src/testing-evidence/runner-adapter.js.map +1 -0
- package/src/testing-evidence/sensitive-artifacts.d.ts +13 -0
- package/src/testing-evidence/sensitive-artifacts.js +93 -0
- package/src/testing-evidence/sensitive-artifacts.js.map +1 -0
- package/src/work-markers/work-markers.js +4 -3
- package/src/work-markers/work-markers.js.map +1 -1
- package/src/workload-roles/account-baseline.d.ts +132 -0
- package/src/workload-roles/account-baseline.js +743 -0
- package/src/workload-roles/account-baseline.js.map +1 -0
- package/src/workload-roles/authority.d.ts +38 -0
- package/src/workload-roles/authority.js +156 -0
- package/src/workload-roles/authority.js.map +1 -0
- package/src/workload-roles/aws-adapter.d.ts +99 -0
- package/src/workload-roles/aws-adapter.js +416 -0
- package/src/workload-roles/aws-adapter.js.map +1 -0
- package/src/workload-roles/aws-internal-handler.d.ts +27 -0
- package/src/workload-roles/aws-internal-handler.js +58 -0
- package/src/workload-roles/aws-internal-handler.js.map +1 -0
- package/src/workload-roles/aws-s3-state.d.ts +52 -0
- package/src/workload-roles/aws-s3-state.js +164 -0
- package/src/workload-roles/aws-s3-state.js.map +1 -0
- package/src/workload-roles/aws-sdk-control-plane.d.ts +12 -0
- package/src/workload-roles/aws-sdk-control-plane.js +291 -0
- package/src/workload-roles/aws-sdk-control-plane.js.map +1 -0
- package/src/workload-roles/boundary.d.ts +33 -0
- package/src/workload-roles/boundary.js +130 -0
- package/src/workload-roles/boundary.js.map +1 -0
- package/src/workload-roles/convergence.d.ts +66 -0
- package/src/workload-roles/convergence.js +186 -0
- package/src/workload-roles/convergence.js.map +1 -0
- package/src/workload-roles/effective-policy.d.ts +51 -0
- package/src/workload-roles/effective-policy.js +183 -0
- package/src/workload-roles/effective-policy.js.map +1 -0
- package/src/workload-roles/handler.d.ts +43 -0
- package/src/workload-roles/handler.js +130 -0
- package/src/workload-roles/handler.js.map +1 -0
- package/src/workload-roles/history.d.ts +47 -0
- package/src/workload-roles/history.js +324 -0
- package/src/workload-roles/history.js.map +1 -0
- package/src/workload-roles/index.d.ts +17 -0
- package/src/workload-roles/index.js +21 -0
- package/src/workload-roles/index.js.map +1 -0
- package/src/workload-roles/injection.d.ts +119 -0
- package/src/workload-roles/injection.js +495 -0
- package/src/workload-roles/injection.js.map +1 -0
- package/src/workload-roles/manifest.d.ts +54 -0
- package/src/workload-roles/manifest.js +343 -0
- package/src/workload-roles/manifest.js.map +1 -0
- package/src/workload-roles/provisioner.d.ts +70 -0
- package/src/workload-roles/provisioner.js +231 -0
- package/src/workload-roles/provisioner.js.map +1 -0
- package/src/workload-roles/registration.d.ts +101 -0
- package/src/workload-roles/registration.js +457 -0
- package/src/workload-roles/registration.js.map +1 -0
- package/src/workload-roles/stage-boundary.d.ts +31 -0
- package/src/workload-roles/stage-boundary.js +208 -0
- package/src/workload-roles/stage-boundary.js.map +1 -0
- package/src/workload-roles/standard-slice.d.ts +54 -0
- package/src/workload-roles/standard-slice.js +252 -0
- package/src/workload-roles/standard-slice.js.map +1 -0
- package/migrations/standard-pre-v1-to-v1.md +0 -11
- package/src/foundation/aurora-logical-database.d.ts +0 -76
- package/src/foundation/aurora-logical-database.js +0 -419
- package/src/foundation/aurora-logical-database.js.map +0 -1
|
@@ -0,0 +1,866 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PROTECTED_AGGREGATE_COUNT_TARGET = exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_PATH = exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_NAME = exports.PROTECTED_PERFORMANCE_COST_WORKFLOW_PATH = void 0;
|
|
4
|
+
exports.validateProtectedAggregateCountSourceAuthority = validateProtectedAggregateCountSourceAuthority;
|
|
5
|
+
exports.renderProtectedAggregateCountWorkflow = renderProtectedAggregateCountWorkflow;
|
|
6
|
+
exports.validateProtectedPerformanceCostSourceAuthority = validateProtectedPerformanceCostSourceAuthority;
|
|
7
|
+
exports.renderProtectedPerformanceCostWorkflow = renderProtectedPerformanceCostWorkflow;
|
|
8
|
+
const index_js_1 = require("../../git-policy/index.js");
|
|
9
|
+
const tool_versions_js_1 = require("./tool-versions.js");
|
|
10
|
+
exports.PROTECTED_PERFORMANCE_COST_WORKFLOW_PATH = '.github/workflows/performance-cost-actual.yml';
|
|
11
|
+
exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_NAME = 'Protected aggregate counts';
|
|
12
|
+
exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_PATH = '.github/workflows/performance-aggregate-counts.yml';
|
|
13
|
+
exports.PROTECTED_AGGREGATE_COUNT_TARGET = 'performance-aggregate-counts';
|
|
14
|
+
/**
|
|
15
|
+
* Treats the selected Deploy run as a locator only. The run and its exact
|
|
16
|
+
* release-evidence artifact must independently prove the current protected
|
|
17
|
+
* branch candidate before generated aggregate code is allowed to execute.
|
|
18
|
+
*/
|
|
19
|
+
function validateProtectedAggregateCountSourceAuthority(input) {
|
|
20
|
+
const refuse = (detail) => {
|
|
21
|
+
throw new Error(`Protected aggregate-count source authority is invalid: ${detail}.`);
|
|
22
|
+
};
|
|
23
|
+
const branch = input.stage === 'staging'
|
|
24
|
+
? 'develop'
|
|
25
|
+
: input.stage === 'production'
|
|
26
|
+
? 'main'
|
|
27
|
+
: refuse('stage is unsupported');
|
|
28
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(input.project)) {
|
|
29
|
+
refuse('Product Slice identity is not normalized');
|
|
30
|
+
}
|
|
31
|
+
if (!/^(?:[a-f0-9]{40}|[a-f0-9]{64})$/.test(input.candidate) ||
|
|
32
|
+
!/^[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/.test(input.repository) ||
|
|
33
|
+
!/^[1-9]\d{0,19}$/.test(input.runId)) {
|
|
34
|
+
refuse('repository, candidate, or run identity is malformed');
|
|
35
|
+
}
|
|
36
|
+
const runAttempt = String(input.run.run_attempt ?? '');
|
|
37
|
+
if (String(input.run.id ?? '') !== input.runId ||
|
|
38
|
+
input.run.name !== 'Deploy' ||
|
|
39
|
+
input.run.path !== '.github/workflows/deploy.yml' ||
|
|
40
|
+
input.run.status !== 'completed' ||
|
|
41
|
+
input.run.conclusion !== 'success' ||
|
|
42
|
+
!['push', 'workflow_dispatch'].includes(input.run.event ?? '') ||
|
|
43
|
+
input.run.head_branch !== branch ||
|
|
44
|
+
input.run.head_repository?.full_name !== input.repository ||
|
|
45
|
+
input.run.head_sha !== input.candidate ||
|
|
46
|
+
!/^[1-9]\d*$/.test(runAttempt)) {
|
|
47
|
+
refuse('Deploy run does not match the current protected candidate');
|
|
48
|
+
}
|
|
49
|
+
const artifactName = [
|
|
50
|
+
'release-evidence',
|
|
51
|
+
input.stage,
|
|
52
|
+
input.runId,
|
|
53
|
+
runAttempt,
|
|
54
|
+
].join('-');
|
|
55
|
+
if (!Number.isSafeInteger(input.artifactTotal) ||
|
|
56
|
+
input.artifactTotal < 1 ||
|
|
57
|
+
input.artifactTotal > 100 ||
|
|
58
|
+
input.artifacts.length !== input.artifactTotal ||
|
|
59
|
+
input.artifacts.filter(({ expired, name }) => expired === false && name === artifactName).length !== 1) {
|
|
60
|
+
refuse('exact release-evidence artifact is absent, expired, or ambiguous');
|
|
61
|
+
}
|
|
62
|
+
return Object.freeze({ artifactName, runAttempt });
|
|
63
|
+
}
|
|
64
|
+
function renderProtectedAggregateCountWorkflow() {
|
|
65
|
+
const checkout = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.checkout);
|
|
66
|
+
const configureAws = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.configureAwsCredentials);
|
|
67
|
+
const downloadArtifact = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.downloadArtifact);
|
|
68
|
+
const pnpmSetup = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.pnpmSetup);
|
|
69
|
+
const setupNode = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.setupNode);
|
|
70
|
+
const uploadArtifact = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.uploadArtifact);
|
|
71
|
+
const sourceAuthority = Buffer.from(validateProtectedAggregateCountSourceAuthority.toString(), 'utf8').toString('base64');
|
|
72
|
+
return {
|
|
73
|
+
[exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_PATH]: `name: ${exports.PROTECTED_AGGREGATE_COUNT_WORKFLOW_NAME}
|
|
74
|
+
|
|
75
|
+
on:
|
|
76
|
+
workflow_dispatch:
|
|
77
|
+
inputs:
|
|
78
|
+
stage:
|
|
79
|
+
description: Exact protected aggregate cohort stage
|
|
80
|
+
required: true
|
|
81
|
+
type: choice
|
|
82
|
+
options: [staging, production]
|
|
83
|
+
project:
|
|
84
|
+
description: Exact Product Slice project
|
|
85
|
+
required: true
|
|
86
|
+
type: string
|
|
87
|
+
candidate:
|
|
88
|
+
description: Exact current protected-ref Git object ID
|
|
89
|
+
required: true
|
|
90
|
+
type: string
|
|
91
|
+
release_run_id:
|
|
92
|
+
description: Exact successful generated Deploy workflow run
|
|
93
|
+
required: true
|
|
94
|
+
type: string
|
|
95
|
+
period_start:
|
|
96
|
+
description: Closed billing period start as YYYY-MM-DD
|
|
97
|
+
required: true
|
|
98
|
+
type: string
|
|
99
|
+
period_end:
|
|
100
|
+
description: Closed billing period end as YYYY-MM-DD
|
|
101
|
+
required: true
|
|
102
|
+
type: string
|
|
103
|
+
|
|
104
|
+
permissions:
|
|
105
|
+
contents: read
|
|
106
|
+
|
|
107
|
+
concurrency:
|
|
108
|
+
group: protected-performance-aggregate-\${{ inputs.stage }}-\${{ inputs.project }}
|
|
109
|
+
cancel-in-progress: false
|
|
110
|
+
|
|
111
|
+
jobs:
|
|
112
|
+
collect:
|
|
113
|
+
environment: performance-aggregate-\${{ inputs.stage }}
|
|
114
|
+
permissions:
|
|
115
|
+
actions: read
|
|
116
|
+
contents: read
|
|
117
|
+
id-token: write
|
|
118
|
+
runs-on: ubuntu-latest
|
|
119
|
+
timeout-minutes: 20
|
|
120
|
+
env:
|
|
121
|
+
AWS_EXPECTED_ACCOUNT_ID: \${{ vars.AWS_EXPECTED_ACCOUNT_ID }}
|
|
122
|
+
AWS_PERFORMANCE_AGGREGATE_ROLE_ARN: \${{ secrets.AWS_PERFORMANCE_AGGREGATE_ROLE_ARN }}
|
|
123
|
+
AWS_REGION: \${{ vars.AWS_REGION }}
|
|
124
|
+
EBK_APPROVED_REGION: \${{ vars.AWS_REGION }}
|
|
125
|
+
EBK_AGGREGATE_PERIOD_END: \${{ inputs.period_end }}T00:00:00.000Z
|
|
126
|
+
EBK_AGGREGATE_PERIOD_START: \${{ inputs.period_start }}T00:00:00.000Z
|
|
127
|
+
EBK_PROJECT: \${{ inputs.project }}
|
|
128
|
+
EBK_RELEASE_ARTIFACT_RUN_ID: \${{ inputs.release_run_id }}
|
|
129
|
+
EBK_SOURCE_COMMIT: \${{ inputs.candidate }}
|
|
130
|
+
EBK_STAGE: \${{ inputs.stage }}
|
|
131
|
+
NX_DAEMON: 'false'
|
|
132
|
+
steps:
|
|
133
|
+
- name: Validate exact protected aggregate request
|
|
134
|
+
env:
|
|
135
|
+
EBK_PROTECTED_REF: \${{ github.ref }}
|
|
136
|
+
EBK_WORKFLOW_COMMIT: \${{ github.sha }}
|
|
137
|
+
run: |
|
|
138
|
+
set -euo pipefail
|
|
139
|
+
case "$EBK_STAGE:$EBK_PROTECTED_REF" in
|
|
140
|
+
staging:refs/heads/develop|production:refs/heads/main) ;;
|
|
141
|
+
*) echo 'Aggregate stage does not match its protected branch'; exit 1 ;;
|
|
142
|
+
esac
|
|
143
|
+
case "$EBK_PROJECT" in
|
|
144
|
+
''|-*|*-|*--*|*[!a-z0-9-]*) echo 'Project must be one normalized Product Slice name'; exit 1 ;;
|
|
145
|
+
esac
|
|
146
|
+
case "$EBK_SOURCE_COMMIT" in *[!0-9a-f]*|'') exit 1 ;; esac
|
|
147
|
+
case "\${#EBK_SOURCE_COMMIT}" in 40|64) ;; *) exit 1 ;; esac
|
|
148
|
+
test "$EBK_SOURCE_COMMIT" = "$EBK_WORKFLOW_COMMIT" ||
|
|
149
|
+
{ echo 'Candidate must equal the current protected-ref commit'; exit 1; }
|
|
150
|
+
case "$EBK_RELEASE_ARTIFACT_RUN_ID" in 0|*[!0-9]*|'') exit 1 ;; esac
|
|
151
|
+
test "\${#EBK_RELEASE_ARTIFACT_RUN_ID}" -le 20 || exit 1
|
|
152
|
+
for instant in \
|
|
153
|
+
"$EBK_AGGREGATE_PERIOD_START" \
|
|
154
|
+
"$EBK_AGGREGATE_PERIOD_END"; do
|
|
155
|
+
case "$instant" in
|
|
156
|
+
[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T00:00:00.000Z) ;;
|
|
157
|
+
*) echo 'Aggregate period boundaries must use UTC-midnight instants'; exit 1 ;;
|
|
158
|
+
esac
|
|
159
|
+
done
|
|
160
|
+
case "$AWS_EXPECTED_ACCOUNT_ID" in
|
|
161
|
+
[0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9][0-9]) ;;
|
|
162
|
+
*) echo 'Aggregate environment account is invalid'; exit 1 ;;
|
|
163
|
+
esac
|
|
164
|
+
case "$AWS_REGION" in
|
|
165
|
+
''|*[!a-z0-9-]*|*-|*--) echo 'Aggregate environment Region is invalid'; exit 1 ;;
|
|
166
|
+
*) ;;
|
|
167
|
+
esac
|
|
168
|
+
test -n "$AWS_PERFORMANCE_AGGREGATE_ROLE_ARN" ||
|
|
169
|
+
{ echo 'Protected aggregate-read role is absent'; exit 1; }
|
|
170
|
+
case "$AWS_REGION" in
|
|
171
|
+
cn-*) aws_partition=aws-cn ;;
|
|
172
|
+
us-gov-*) aws_partition=aws-us-gov ;;
|
|
173
|
+
us-isob-*) aws_partition=aws-iso-b ;;
|
|
174
|
+
us-isoe-*) aws_partition=aws-iso-e ;;
|
|
175
|
+
us-isof-*) aws_partition=aws-iso-f ;;
|
|
176
|
+
us-iso-*) aws_partition=aws-iso ;;
|
|
177
|
+
eusc-*) aws_partition=aws-eusc ;;
|
|
178
|
+
*) aws_partition=aws ;;
|
|
179
|
+
esac
|
|
180
|
+
case "$AWS_PERFORMANCE_AGGREGATE_ROLE_ARN" in
|
|
181
|
+
arn:$aws_partition:iam::$AWS_EXPECTED_ACCOUNT_ID:role/*) ;;
|
|
182
|
+
*) echo 'Aggregate-read role belongs to another account'; exit 1 ;;
|
|
183
|
+
esac
|
|
184
|
+
- id: source_authority
|
|
185
|
+
name: Reconcile current protected Deploy run and artifact
|
|
186
|
+
env:
|
|
187
|
+
GH_TOKEN: \${{ github.token }}
|
|
188
|
+
run: |
|
|
189
|
+
node -e '
|
|
190
|
+
const { execFileSync } = require("node:child_process");
|
|
191
|
+
const { appendFileSync } = require("node:fs");
|
|
192
|
+
const source = Buffer.from(
|
|
193
|
+
"${sourceAuthority}",
|
|
194
|
+
"base64",
|
|
195
|
+
).toString("utf8");
|
|
196
|
+
const validateProtectedAggregateCountSourceAuthority =
|
|
197
|
+
Function("return (" + source + ");")();
|
|
198
|
+
const api = (route) => JSON.parse(execFileSync(
|
|
199
|
+
"gh",
|
|
200
|
+
["api", route],
|
|
201
|
+
{ encoding: "utf8", maxBuffer: 4 * 1024 * 1024 },
|
|
202
|
+
));
|
|
203
|
+
const repository = process.env.GITHUB_REPOSITORY;
|
|
204
|
+
const runId = process.env.EBK_RELEASE_ARTIFACT_RUN_ID;
|
|
205
|
+
const run = api(
|
|
206
|
+
"/repos/" + repository + "/actions/runs/" + runId,
|
|
207
|
+
);
|
|
208
|
+
const artifacts = api(
|
|
209
|
+
"/repos/" + repository +
|
|
210
|
+
"/actions/runs/" + runId + "/artifacts?per_page=100",
|
|
211
|
+
);
|
|
212
|
+
const result =
|
|
213
|
+
validateProtectedAggregateCountSourceAuthority({
|
|
214
|
+
artifacts: artifacts.artifacts ?? [],
|
|
215
|
+
artifactTotal: artifacts.total_count,
|
|
216
|
+
candidate: process.env.EBK_SOURCE_COMMIT,
|
|
217
|
+
project: process.env.EBK_PROJECT,
|
|
218
|
+
repository,
|
|
219
|
+
run,
|
|
220
|
+
runId,
|
|
221
|
+
stage: process.env.EBK_STAGE,
|
|
222
|
+
});
|
|
223
|
+
appendFileSync(
|
|
224
|
+
process.env.GITHUB_OUTPUT,
|
|
225
|
+
"artifact_name=" + result.artifactName + "\\n" +
|
|
226
|
+
"run_attempt=" + result.runAttempt + "\\n",
|
|
227
|
+
);
|
|
228
|
+
'
|
|
229
|
+
- uses: ${checkout}
|
|
230
|
+
with:
|
|
231
|
+
fetch-depth: 1
|
|
232
|
+
persist-credentials: false
|
|
233
|
+
ref: \${{ inputs.candidate }}
|
|
234
|
+
- uses: ${pnpmSetup}
|
|
235
|
+
- uses: ${setupNode}
|
|
236
|
+
with:
|
|
237
|
+
node-version: ${tool_versions_js_1.WORKSPACE_NODE_VERSION}
|
|
238
|
+
cache: pnpm
|
|
239
|
+
- run: pnpm install --frozen-lockfile --ignore-scripts --ignore-pnpmfile
|
|
240
|
+
- name: Verify managed workspace integrity before AWS authority
|
|
241
|
+
run: pnpm nx run "$(node -p 'require("./package.json").name'):workspace-health"
|
|
242
|
+
- name: Download exact active protected release
|
|
243
|
+
uses: ${downloadArtifact}
|
|
244
|
+
with:
|
|
245
|
+
github-token: \${{ github.token }}
|
|
246
|
+
name: \${{ steps.source_authority.outputs.artifact_name }}
|
|
247
|
+
path: packages/\${{ inputs.project }}/.ebk/performance-aggregate-input/release-artifact
|
|
248
|
+
run-id: \${{ inputs.release_run_id }}
|
|
249
|
+
- name: Validate aggregate authority before AWS
|
|
250
|
+
env:
|
|
251
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
252
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
253
|
+
EBK_RELEASE_RUN_ATTEMPT: \${{ steps.source_authority.outputs.run_attempt }}
|
|
254
|
+
run: >-
|
|
255
|
+
node --experimental-strip-types
|
|
256
|
+
"packages/$EBK_PROJECT/scripts/performance-aggregate-counts.mjs"
|
|
257
|
+
--validate-authority
|
|
258
|
+
- uses: ${configureAws}
|
|
259
|
+
with:
|
|
260
|
+
aws-region: \${{ vars.AWS_REGION }}
|
|
261
|
+
role-session-name: ebk-performance-aggregate-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
262
|
+
role-to-assume: \${{ secrets.AWS_PERFORMANCE_AGGREGATE_ROLE_ARN }}
|
|
263
|
+
- name: Withhold OIDC request bearer from aggregate execution
|
|
264
|
+
env:
|
|
265
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
266
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
267
|
+
run: |
|
|
268
|
+
{
|
|
269
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_URL='
|
|
270
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_TOKEN='
|
|
271
|
+
} >> "$GITHUB_ENV"
|
|
272
|
+
- name: Verify exact aggregate-read account and Region
|
|
273
|
+
env:
|
|
274
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
275
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
276
|
+
run: |
|
|
277
|
+
set -euo pipefail
|
|
278
|
+
actual_account="$(aws sts get-caller-identity --query Account --output text)"
|
|
279
|
+
test "$actual_account" = "$AWS_EXPECTED_ACCOUNT_ID" ||
|
|
280
|
+
{ echo 'Aggregate-read account differs from its protected environment'; exit 1; }
|
|
281
|
+
test "$AWS_REGION" = "$EBK_APPROVED_REGION" ||
|
|
282
|
+
{ echo 'Aggregate-read Region differs from its protected environment'; exit 1; }
|
|
283
|
+
printf 'EBK_AGGREGATE_ACTUAL_ACCOUNT_ID=%s\\n' "$actual_account" >> "$GITHUB_ENV"
|
|
284
|
+
- name: Produce canonical aggregate-count evidence
|
|
285
|
+
env:
|
|
286
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
287
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
288
|
+
EBK_RELEASE_RUN_ATTEMPT: \${{ steps.source_authority.outputs.run_attempt }}
|
|
289
|
+
run: pnpm nx run "$EBK_PROJECT:${exports.PROTECTED_AGGREGATE_COUNT_TARGET}"
|
|
290
|
+
- name: Clear current aggregate-read AWS session credentials
|
|
291
|
+
if: always()
|
|
292
|
+
env:
|
|
293
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
294
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
295
|
+
run: |
|
|
296
|
+
{
|
|
297
|
+
echo 'AWS_ACCESS_KEY_ID='
|
|
298
|
+
echo 'AWS_SECRET_ACCESS_KEY='
|
|
299
|
+
echo 'AWS_SESSION_TOKEN='
|
|
300
|
+
echo 'AWS_SECURITY_TOKEN='
|
|
301
|
+
} >> "$GITHUB_ENV"
|
|
302
|
+
- name: Verify one bounded aggregate-count artifact
|
|
303
|
+
env:
|
|
304
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
305
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
306
|
+
run: |
|
|
307
|
+
set -euo pipefail
|
|
308
|
+
evidence_root="packages/$EBK_PROJECT/.ebk/evidence"
|
|
309
|
+
evidence="$evidence_root/aggregate-count-evidence.json"
|
|
310
|
+
test "$(find "$evidence_root" -mindepth 1 -maxdepth 1 -type f | wc -l | tr -d ' ')" = 1
|
|
311
|
+
test "$(find "$evidence_root" -mindepth 1 -maxdepth 1 ! -type f | wc -l | tr -d ' ')" = 0
|
|
312
|
+
test -f "$evidence" && test ! -L "$evidence"
|
|
313
|
+
test "$(wc -c < "$evidence" | tr -d ' ')" -le 1048576
|
|
314
|
+
- name: Retain canonical aggregate-count evidence
|
|
315
|
+
env:
|
|
316
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
317
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
318
|
+
uses: ${uploadArtifact}
|
|
319
|
+
with:
|
|
320
|
+
name: aggregate-count-\${{ inputs.stage }}-\${{ inputs.project }}-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
321
|
+
if-no-files-found: error
|
|
322
|
+
include-hidden-files: true
|
|
323
|
+
retention-days: 90
|
|
324
|
+
path: packages/\${{ inputs.project }}/.ebk/evidence/aggregate-count-evidence.json
|
|
325
|
+
`,
|
|
326
|
+
};
|
|
327
|
+
}
|
|
328
|
+
/**
|
|
329
|
+
* Treats caller-supplied run IDs and artifact names only as selectors. The
|
|
330
|
+
* selected producer runs and artifacts must independently match the fixed
|
|
331
|
+
* protected workflow contracts before AWS authority is introduced.
|
|
332
|
+
*/
|
|
333
|
+
function validateProtectedPerformanceCostSourceAuthority(input) {
|
|
334
|
+
const refuse = (detail) => {
|
|
335
|
+
throw new Error(`Protected cost source authority is invalid: ${detail}.`);
|
|
336
|
+
};
|
|
337
|
+
const branch = input.stage === 'staging'
|
|
338
|
+
? 'develop'
|
|
339
|
+
: input.stage === 'production'
|
|
340
|
+
? 'main'
|
|
341
|
+
: refuse('stage is unsupported');
|
|
342
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(input.project)) {
|
|
343
|
+
refuse('Product Slice identity is not normalized');
|
|
344
|
+
}
|
|
345
|
+
if (!/^[a-f0-9]{40}$/.test(input.candidate) ||
|
|
346
|
+
!/^[A-Za-z0-9_.-]+\/[A-Za-z0-9_.-]+$/.test(input.repository)) {
|
|
347
|
+
refuse('repository or candidate identity is malformed');
|
|
348
|
+
}
|
|
349
|
+
const validateRun = (run, expected, label) => {
|
|
350
|
+
if (!/^[1-9]\d{0,19}$/.test(expected.id) ||
|
|
351
|
+
String(run.id ?? '') !== expected.id ||
|
|
352
|
+
run.name !== expected.name ||
|
|
353
|
+
run.path !== expected.path ||
|
|
354
|
+
run.status !== 'completed' ||
|
|
355
|
+
run.conclusion !== 'success' ||
|
|
356
|
+
!expected.events.includes(run.event ?? '') ||
|
|
357
|
+
run.head_branch !== branch ||
|
|
358
|
+
run.head_repository?.full_name !== input.repository ||
|
|
359
|
+
run.head_sha !== input.candidate ||
|
|
360
|
+
!/^[1-9]\d*$/.test(String(run.run_attempt ?? ''))) {
|
|
361
|
+
refuse(`${label} run does not match its fixed protected producer`);
|
|
362
|
+
}
|
|
363
|
+
};
|
|
364
|
+
validateRun(input.aggregateRun, {
|
|
365
|
+
events: ['workflow_dispatch'],
|
|
366
|
+
id: input.aggregateRunId,
|
|
367
|
+
name: 'Protected aggregate counts',
|
|
368
|
+
path: '.github/workflows/performance-aggregate-counts.yml',
|
|
369
|
+
}, 'aggregate-count');
|
|
370
|
+
validateRun(input.releaseRun, {
|
|
371
|
+
events: ['push', 'workflow_dispatch'],
|
|
372
|
+
id: input.releaseRunId,
|
|
373
|
+
name: 'Deploy',
|
|
374
|
+
path: '.github/workflows/deploy.yml',
|
|
375
|
+
}, 'release');
|
|
376
|
+
const expectedAggregateName = [
|
|
377
|
+
'aggregate-count',
|
|
378
|
+
input.stage,
|
|
379
|
+
input.project,
|
|
380
|
+
String(input.aggregateRun.id),
|
|
381
|
+
String(input.aggregateRun.run_attempt),
|
|
382
|
+
].join('-');
|
|
383
|
+
const expectedReleaseName = [
|
|
384
|
+
'release-evidence',
|
|
385
|
+
input.stage,
|
|
386
|
+
String(input.releaseRun.id),
|
|
387
|
+
String(input.releaseRun.run_attempt),
|
|
388
|
+
].join('-');
|
|
389
|
+
const validateArtifact = (artifacts, total, selected, expected, label) => {
|
|
390
|
+
if (!Number.isSafeInteger(total) ||
|
|
391
|
+
total < 1 ||
|
|
392
|
+
total > 100 ||
|
|
393
|
+
artifacts.length !== total ||
|
|
394
|
+
selected !== expected ||
|
|
395
|
+
artifacts.filter(({ expired, name }) => expired === false && name === expected).length !== 1) {
|
|
396
|
+
refuse(`${label} artifact is absent, expired, or ambiguous`);
|
|
397
|
+
}
|
|
398
|
+
};
|
|
399
|
+
validateArtifact(input.aggregateArtifacts, input.aggregateArtifactTotal, input.aggregateArtifactName, expectedAggregateName, 'aggregate-count');
|
|
400
|
+
validateArtifact(input.releaseArtifacts, input.releaseArtifactTotal, input.releaseArtifactName, expectedReleaseName, 'release');
|
|
401
|
+
}
|
|
402
|
+
function renderProtectedPerformanceCostWorkflow() {
|
|
403
|
+
const checkout = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.checkout);
|
|
404
|
+
const configureAws = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.configureAwsCredentials);
|
|
405
|
+
const downloadArtifact = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.downloadArtifact);
|
|
406
|
+
const pnpmSetup = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.pnpmSetup);
|
|
407
|
+
const setupNode = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.setupNode);
|
|
408
|
+
const uploadArtifact = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.uploadArtifact);
|
|
409
|
+
const sourceAuthority = Buffer.from(validateProtectedPerformanceCostSourceAuthority.toString(), 'utf8').toString('base64');
|
|
410
|
+
return {
|
|
411
|
+
[exports.PROTECTED_PERFORMANCE_COST_WORKFLOW_PATH]: `name: Protected performance cost actuals
|
|
412
|
+
|
|
413
|
+
on:
|
|
414
|
+
workflow_dispatch:
|
|
415
|
+
inputs:
|
|
416
|
+
stage:
|
|
417
|
+
description: Exact protected billing cohort stage
|
|
418
|
+
required: true
|
|
419
|
+
type: choice
|
|
420
|
+
options: [staging, production]
|
|
421
|
+
project:
|
|
422
|
+
description: Exact Product Slice project
|
|
423
|
+
required: true
|
|
424
|
+
type: string
|
|
425
|
+
candidate:
|
|
426
|
+
description: Exact protected-ref Git object ID
|
|
427
|
+
required: true
|
|
428
|
+
type: string
|
|
429
|
+
aggregate_run_id:
|
|
430
|
+
description: Exact fixed protected aggregate-count workflow run
|
|
431
|
+
required: true
|
|
432
|
+
type: string
|
|
433
|
+
aggregate_artifact:
|
|
434
|
+
description: Exact convention-named aggregate-count artifact
|
|
435
|
+
required: true
|
|
436
|
+
type: string
|
|
437
|
+
aggregate_evidence_digest:
|
|
438
|
+
description: Independently approved SHA-256 of aggregate-count evidence
|
|
439
|
+
required: true
|
|
440
|
+
type: string
|
|
441
|
+
period_start:
|
|
442
|
+
description: Independently approved closed billing period start as YYYY-MM-DD
|
|
443
|
+
required: true
|
|
444
|
+
type: string
|
|
445
|
+
period_end:
|
|
446
|
+
description: Independently approved closed billing period end as YYYY-MM-DD
|
|
447
|
+
required: true
|
|
448
|
+
type: string
|
|
449
|
+
release_run_id:
|
|
450
|
+
description: Exact generated Deploy workflow run
|
|
451
|
+
required: true
|
|
452
|
+
type: string
|
|
453
|
+
release_artifact:
|
|
454
|
+
description: Exact convention-named release-evidence artifact
|
|
455
|
+
required: true
|
|
456
|
+
type: string
|
|
457
|
+
release_binding_digest:
|
|
458
|
+
description: Independently approved SHA-256 of the release binding
|
|
459
|
+
required: true
|
|
460
|
+
type: string
|
|
461
|
+
target_account_fingerprint:
|
|
462
|
+
description: Exact SHA-256 fingerprint of the approved AWS account
|
|
463
|
+
required: true
|
|
464
|
+
type: string
|
|
465
|
+
target_region:
|
|
466
|
+
description: Exact approved resource Region
|
|
467
|
+
required: true
|
|
468
|
+
type: string
|
|
469
|
+
|
|
470
|
+
permissions:
|
|
471
|
+
contents: read
|
|
472
|
+
|
|
473
|
+
concurrency:
|
|
474
|
+
group: protected-performance-cost-\${{ inputs.stage }}-\${{ inputs.project }}
|
|
475
|
+
cancel-in-progress: false
|
|
476
|
+
|
|
477
|
+
jobs:
|
|
478
|
+
collect:
|
|
479
|
+
environment: performance-cost-\${{ inputs.stage }}
|
|
480
|
+
permissions:
|
|
481
|
+
actions: read
|
|
482
|
+
contents: read
|
|
483
|
+
id-token: write
|
|
484
|
+
runs-on: ubuntu-latest
|
|
485
|
+
timeout-minutes: 20
|
|
486
|
+
env:
|
|
487
|
+
AWS_EXPECTED_ACCOUNT_ID: \${{ vars.AWS_EXPECTED_ACCOUNT_ID }}
|
|
488
|
+
AWS_PERFORMANCE_COST_ROLE_ARN: \${{ secrets.AWS_PERFORMANCE_COST_ROLE_ARN }}
|
|
489
|
+
AWS_REGION: \${{ inputs.target_region }}
|
|
490
|
+
EBK_APPROVED_REGION: \${{ vars.AWS_REGION }}
|
|
491
|
+
EBK_ACCOUNT_FINGERPRINT: \${{ inputs.target_account_fingerprint }}
|
|
492
|
+
EBK_AGGREGATE_ARTIFACT_NAME: \${{ inputs.aggregate_artifact }}
|
|
493
|
+
EBK_AGGREGATE_ARTIFACT_RUN_ID: \${{ inputs.aggregate_run_id }}
|
|
494
|
+
EBK_AGGREGATE_COUNT_EVIDENCE_PATH: .ebk/performance-cost-input/aggregate/aggregate-count-evidence.json
|
|
495
|
+
EBK_EXPECTED_AGGREGATE_COUNT_EVIDENCE_DIGEST: \${{ inputs.aggregate_evidence_digest }}
|
|
496
|
+
EBK_EXPECTED_BILLING_PERIOD_END: \${{ inputs.period_end }}T00:00:00.000Z
|
|
497
|
+
EBK_EXPECTED_BILLING_PERIOD_START: \${{ inputs.period_start }}T00:00:00.000Z
|
|
498
|
+
EBK_EXPECTED_RELEASE_BINDING_DIGEST: \${{ inputs.release_binding_digest }}
|
|
499
|
+
EBK_PROJECT: \${{ inputs.project }}
|
|
500
|
+
EBK_RELEASE_ARTIFACT_NAME: \${{ inputs.release_artifact }}
|
|
501
|
+
EBK_RELEASE_ARTIFACT_RUN_ID: \${{ inputs.release_run_id }}
|
|
502
|
+
EBK_RELEASE_BINDING_PATH: .ebk/performance-cost-input/release/release-binding.json
|
|
503
|
+
EBK_SOURCE_COMMIT: \${{ inputs.candidate }}
|
|
504
|
+
EBK_STAGE: \${{ inputs.stage }}
|
|
505
|
+
NX_DAEMON: 'false'
|
|
506
|
+
steps:
|
|
507
|
+
- name: Validate exact protected collection request
|
|
508
|
+
env:
|
|
509
|
+
EBK_PROTECTED_REF: \${{ github.ref }}
|
|
510
|
+
EBK_WORKFLOW_COMMIT: \${{ github.sha }}
|
|
511
|
+
run: |
|
|
512
|
+
set -euo pipefail
|
|
513
|
+
case "$EBK_STAGE:$EBK_PROTECTED_REF" in
|
|
514
|
+
staging:refs/heads/develop|production:refs/heads/main) ;;
|
|
515
|
+
*) echo 'Cost collection stage does not match its protected branch'; exit 1 ;;
|
|
516
|
+
esac
|
|
517
|
+
case "$EBK_PROJECT" in
|
|
518
|
+
''|-*|*-|*--*|*[!a-z0-9-]*) echo 'Project must be one normalized Product Slice name'; exit 1 ;;
|
|
519
|
+
esac
|
|
520
|
+
case "$EBK_SOURCE_COMMIT" in
|
|
521
|
+
*[!0-9a-f]*|'') echo 'Candidate must be lowercase hexadecimal'; exit 1 ;;
|
|
522
|
+
esac
|
|
523
|
+
case "\${#EBK_SOURCE_COMMIT}" in 40|64) ;; *) exit 1 ;; esac
|
|
524
|
+
test "$EBK_SOURCE_COMMIT" = "$EBK_WORKFLOW_COMMIT" ||
|
|
525
|
+
{ echo 'Candidate must equal the exact workflow ref commit'; exit 1; }
|
|
526
|
+
for digest in \
|
|
527
|
+
"$EBK_EXPECTED_AGGREGATE_COUNT_EVIDENCE_DIGEST" \
|
|
528
|
+
"$EBK_EXPECTED_RELEASE_BINDING_DIGEST"; do
|
|
529
|
+
case "$digest" in *[!0-9a-f]*|'') exit 1 ;; esac
|
|
530
|
+
test "\${#digest}" -eq 64 || exit 1
|
|
531
|
+
done
|
|
532
|
+
for instant in \
|
|
533
|
+
"$EBK_EXPECTED_BILLING_PERIOD_START" \
|
|
534
|
+
"$EBK_EXPECTED_BILLING_PERIOD_END"; do
|
|
535
|
+
case "$instant" in
|
|
536
|
+
[0-9][0-9][0-9][0-9]-[0-9][0-9]-[0-9][0-9]T00:00:00.000Z) ;;
|
|
537
|
+
*) echo 'Billing period boundaries must use UTC-midnight instants'; exit 1 ;;
|
|
538
|
+
esac
|
|
539
|
+
done
|
|
540
|
+
for run_id in \
|
|
541
|
+
"$EBK_AGGREGATE_ARTIFACT_RUN_ID" \
|
|
542
|
+
"$EBK_RELEASE_ARTIFACT_RUN_ID"; do
|
|
543
|
+
case "$run_id" in 0|*[!0-9]*|'') exit 1 ;; esac
|
|
544
|
+
test "\${#run_id}" -le 20 || exit 1
|
|
545
|
+
done
|
|
546
|
+
for artifact in \
|
|
547
|
+
"$EBK_AGGREGATE_ARTIFACT_NAME" \
|
|
548
|
+
"$EBK_RELEASE_ARTIFACT_NAME"; do
|
|
549
|
+
case "$artifact" in
|
|
550
|
+
[A-Za-z0-9]*)
|
|
551
|
+
case "$artifact" in *[!A-Za-z0-9._-]* ) exit 1 ;; esac ;;
|
|
552
|
+
*) exit 1 ;;
|
|
553
|
+
esac
|
|
554
|
+
test "\${#artifact}" -le 128 || exit 1
|
|
555
|
+
done
|
|
556
|
+
test -n "$AWS_EXPECTED_ACCOUNT_ID" &&
|
|
557
|
+
test -n "$AWS_PERFORMANCE_COST_ROLE_ARN" ||
|
|
558
|
+
{ echo 'Protected cost environment is incomplete'; exit 1; }
|
|
559
|
+
case "$AWS_REGION" in
|
|
560
|
+
cn-*) aws_partition=aws-cn ;;
|
|
561
|
+
us-gov-*) aws_partition=aws-us-gov ;;
|
|
562
|
+
us-isob-*) aws_partition=aws-iso-b ;;
|
|
563
|
+
us-isoe-*) aws_partition=aws-iso-e ;;
|
|
564
|
+
us-isof-*) aws_partition=aws-iso-f ;;
|
|
565
|
+
us-iso-*) aws_partition=aws-iso ;;
|
|
566
|
+
eusc-*) aws_partition=aws-eusc ;;
|
|
567
|
+
*) aws_partition=aws ;;
|
|
568
|
+
esac
|
|
569
|
+
case "$AWS_PERFORMANCE_COST_ROLE_ARN" in
|
|
570
|
+
arn:$aws_partition:iam::$AWS_EXPECTED_ACCOUNT_ID:role/*) ;;
|
|
571
|
+
*) echo 'Cost collection role belongs to another account'; exit 1 ;;
|
|
572
|
+
esac
|
|
573
|
+
- id: source_authority
|
|
574
|
+
name: Reconcile protected source runs and artifacts
|
|
575
|
+
env:
|
|
576
|
+
GH_TOKEN: \${{ github.token }}
|
|
577
|
+
run: |
|
|
578
|
+
node -e '
|
|
579
|
+
const { execFileSync } = require("node:child_process");
|
|
580
|
+
const { appendFileSync } = require("node:fs");
|
|
581
|
+
const source = Buffer.from(
|
|
582
|
+
"${sourceAuthority}",
|
|
583
|
+
"base64",
|
|
584
|
+
).toString("utf8");
|
|
585
|
+
const validateProtectedPerformanceCostSourceAuthority =
|
|
586
|
+
Function("return (" + source + ");")();
|
|
587
|
+
const api = (route) => JSON.parse(execFileSync(
|
|
588
|
+
"gh",
|
|
589
|
+
["api", route],
|
|
590
|
+
{ encoding: "utf8", maxBuffer: 4 * 1024 * 1024 },
|
|
591
|
+
));
|
|
592
|
+
const repository = process.env.GITHUB_REPOSITORY;
|
|
593
|
+
const run = (id) => api(
|
|
594
|
+
"/repos/" + repository + "/actions/runs/" + id,
|
|
595
|
+
);
|
|
596
|
+
const artifacts = (id) => api(
|
|
597
|
+
"/repos/" + repository +
|
|
598
|
+
"/actions/runs/" + id + "/artifacts?per_page=100",
|
|
599
|
+
);
|
|
600
|
+
const aggregateRun = run(
|
|
601
|
+
process.env.EBK_AGGREGATE_ARTIFACT_RUN_ID,
|
|
602
|
+
);
|
|
603
|
+
const releaseRun = run(
|
|
604
|
+
process.env.EBK_RELEASE_ARTIFACT_RUN_ID,
|
|
605
|
+
);
|
|
606
|
+
const aggregateArtifacts = artifacts(
|
|
607
|
+
process.env.EBK_AGGREGATE_ARTIFACT_RUN_ID,
|
|
608
|
+
);
|
|
609
|
+
const releaseArtifacts = artifacts(
|
|
610
|
+
process.env.EBK_RELEASE_ARTIFACT_RUN_ID,
|
|
611
|
+
);
|
|
612
|
+
validateProtectedPerformanceCostSourceAuthority({
|
|
613
|
+
aggregateArtifactName:
|
|
614
|
+
process.env.EBK_AGGREGATE_ARTIFACT_NAME,
|
|
615
|
+
aggregateArtifactTotal: aggregateArtifacts.total_count,
|
|
616
|
+
aggregateArtifacts: aggregateArtifacts.artifacts ?? [],
|
|
617
|
+
aggregateRun,
|
|
618
|
+
aggregateRunId:
|
|
619
|
+
process.env.EBK_AGGREGATE_ARTIFACT_RUN_ID,
|
|
620
|
+
candidate: process.env.EBK_SOURCE_COMMIT,
|
|
621
|
+
project: process.env.EBK_PROJECT,
|
|
622
|
+
releaseArtifactName:
|
|
623
|
+
process.env.EBK_RELEASE_ARTIFACT_NAME,
|
|
624
|
+
releaseArtifactTotal: releaseArtifacts.total_count,
|
|
625
|
+
releaseArtifacts: releaseArtifacts.artifacts ?? [],
|
|
626
|
+
releaseRun,
|
|
627
|
+
releaseRunId:
|
|
628
|
+
process.env.EBK_RELEASE_ARTIFACT_RUN_ID,
|
|
629
|
+
repository,
|
|
630
|
+
stage: process.env.EBK_STAGE,
|
|
631
|
+
});
|
|
632
|
+
appendFileSync(
|
|
633
|
+
process.env.GITHUB_OUTPUT,
|
|
634
|
+
"release_run_attempt=" +
|
|
635
|
+
String(releaseRun.run_attempt) +
|
|
636
|
+
"\\n",
|
|
637
|
+
);
|
|
638
|
+
'
|
|
639
|
+
- uses: ${checkout}
|
|
640
|
+
with:
|
|
641
|
+
fetch-depth: 1
|
|
642
|
+
persist-credentials: false
|
|
643
|
+
ref: \${{ inputs.candidate }}
|
|
644
|
+
- uses: ${pnpmSetup}
|
|
645
|
+
- uses: ${setupNode}
|
|
646
|
+
with:
|
|
647
|
+
node-version: ${tool_versions_js_1.WORKSPACE_NODE_VERSION}
|
|
648
|
+
cache: pnpm
|
|
649
|
+
- run: pnpm install --frozen-lockfile --ignore-scripts --ignore-pnpmfile
|
|
650
|
+
- name: Verify managed workspace integrity before AWS authority
|
|
651
|
+
run: pnpm nx run "$(node -p 'require("./package.json").name'):workspace-health"
|
|
652
|
+
- name: Download independently produced aggregate counts
|
|
653
|
+
uses: ${downloadArtifact}
|
|
654
|
+
with:
|
|
655
|
+
github-token: \${{ github.token }}
|
|
656
|
+
name: \${{ inputs.aggregate_artifact }}
|
|
657
|
+
path: .ebk/performance-cost-input/aggregate
|
|
658
|
+
run-id: \${{ inputs.aggregate_run_id }}
|
|
659
|
+
- name: Download exact deployed-release binding
|
|
660
|
+
uses: ${downloadArtifact}
|
|
661
|
+
with:
|
|
662
|
+
github-token: \${{ github.token }}
|
|
663
|
+
name: \${{ inputs.release_artifact }}
|
|
664
|
+
path: .ebk/performance-cost-input/release-artifact
|
|
665
|
+
run-id: \${{ inputs.release_run_id }}
|
|
666
|
+
- name: Derive exact performance release binding
|
|
667
|
+
env:
|
|
668
|
+
EBK_RELEASE_RUN_ATTEMPT: \${{ steps.source_authority.outputs.release_run_attempt }}
|
|
669
|
+
run: |
|
|
670
|
+
node -e '
|
|
671
|
+
const {
|
|
672
|
+
lstatSync,
|
|
673
|
+
mkdirSync,
|
|
674
|
+
readFileSync,
|
|
675
|
+
readdirSync,
|
|
676
|
+
writeFileSync,
|
|
677
|
+
} = require("node:fs");
|
|
678
|
+
const { join, relative, resolve } = require("node:path");
|
|
679
|
+
const root = resolve(
|
|
680
|
+
".ebk/performance-cost-input/release-artifact",
|
|
681
|
+
);
|
|
682
|
+
const files = [];
|
|
683
|
+
const visit = (directory) => {
|
|
684
|
+
if (files.length > 4096) {
|
|
685
|
+
throw new Error("Release artifact is too large.");
|
|
686
|
+
}
|
|
687
|
+
for (const name of readdirSync(directory).sort()) {
|
|
688
|
+
const path = join(directory, name);
|
|
689
|
+
const metadata = lstatSync(path);
|
|
690
|
+
if (metadata.isSymbolicLink()) {
|
|
691
|
+
throw new Error("Release artifact contains a symlink.");
|
|
692
|
+
}
|
|
693
|
+
if (metadata.isDirectory()) visit(path);
|
|
694
|
+
else if (metadata.isFile()) files.push(path);
|
|
695
|
+
else {
|
|
696
|
+
throw new Error("Release artifact contains a special file.");
|
|
697
|
+
}
|
|
698
|
+
}
|
|
699
|
+
};
|
|
700
|
+
visit(root);
|
|
701
|
+
const suffix =
|
|
702
|
+
"/" +
|
|
703
|
+
process.env.EBK_PROJECT +
|
|
704
|
+
"/.ebk/evidence/active-protected-release.json";
|
|
705
|
+
const matches = files.filter((path) =>
|
|
706
|
+
("/" + relative(root, path).replaceAll("\\\\", "/"))
|
|
707
|
+
.endsWith(suffix),
|
|
708
|
+
);
|
|
709
|
+
if (matches.length !== 1) {
|
|
710
|
+
throw new Error(
|
|
711
|
+
"Release artifact lacks one exact Slice deployment binding.",
|
|
712
|
+
);
|
|
713
|
+
}
|
|
714
|
+
const metadata = lstatSync(matches[0]);
|
|
715
|
+
if (
|
|
716
|
+
metadata.size < 2 ||
|
|
717
|
+
metadata.size > 1024 * 1024
|
|
718
|
+
) {
|
|
719
|
+
throw new Error("Release binding is outside its size bound.");
|
|
720
|
+
}
|
|
721
|
+
const source = JSON.parse(readFileSync(matches[0], "utf8"));
|
|
722
|
+
const expectedKeys = [
|
|
723
|
+
"candidateDigest",
|
|
724
|
+
"deploymentCommit",
|
|
725
|
+
"kind",
|
|
726
|
+
"manifestDigest",
|
|
727
|
+
"releaseId",
|
|
728
|
+
"releaseMaterialDigest",
|
|
729
|
+
"releaseSourceCommit",
|
|
730
|
+
"runAttempt",
|
|
731
|
+
"runId",
|
|
732
|
+
"schemaVersion",
|
|
733
|
+
"stage",
|
|
734
|
+
"workflow",
|
|
735
|
+
].sort().join(",");
|
|
736
|
+
if (
|
|
737
|
+
Object.keys(source).sort().join(",") !== expectedKeys ||
|
|
738
|
+
source.kind !== "ebk-active-protected-release-binding" ||
|
|
739
|
+
source.schemaVersion !== 1 ||
|
|
740
|
+
source.stage !== process.env.EBK_STAGE ||
|
|
741
|
+
source.workflow !== "Deploy" ||
|
|
742
|
+
String(source.runId) !==
|
|
743
|
+
process.env.EBK_RELEASE_ARTIFACT_RUN_ID ||
|
|
744
|
+
String(source.runAttempt) !==
|
|
745
|
+
process.env.EBK_RELEASE_RUN_ATTEMPT ||
|
|
746
|
+
source.deploymentCommit !== process.env.EBK_SOURCE_COMMIT ||
|
|
747
|
+
!/^[a-f0-9]{64}$/.test(source.candidateDigest ?? "") ||
|
|
748
|
+
!/^[a-f0-9]{64}$/.test(
|
|
749
|
+
source.releaseMaterialDigest ?? "",
|
|
750
|
+
) ||
|
|
751
|
+
!/^[A-Za-z0-9.][A-Za-z0-9._:/#@+\\-]{0,511}$/.test(
|
|
752
|
+
source.releaseId ?? "",
|
|
753
|
+
)
|
|
754
|
+
) {
|
|
755
|
+
throw new Error(
|
|
756
|
+
"Release binding does not match its protected Deploy run.",
|
|
757
|
+
);
|
|
758
|
+
}
|
|
759
|
+
const binding = {
|
|
760
|
+
candidateDigest: source.candidateDigest,
|
|
761
|
+
releaseId: source.releaseId,
|
|
762
|
+
releaseMaterialDigest: source.releaseMaterialDigest,
|
|
763
|
+
sourceCommit: source.deploymentCommit,
|
|
764
|
+
};
|
|
765
|
+
const destinationRoot = resolve(
|
|
766
|
+
".ebk/performance-cost-input/release",
|
|
767
|
+
);
|
|
768
|
+
mkdirSync(destinationRoot, {
|
|
769
|
+
mode: 0o700,
|
|
770
|
+
recursive: true,
|
|
771
|
+
});
|
|
772
|
+
writeFileSync(
|
|
773
|
+
join(destinationRoot, "release-binding.json"),
|
|
774
|
+
JSON.stringify(binding, null, 2) + "\\n",
|
|
775
|
+
{ encoding: "utf8", flag: "wx", mode: 0o600 },
|
|
776
|
+
);
|
|
777
|
+
'
|
|
778
|
+
- name: Verify independently approved input bytes
|
|
779
|
+
run: |
|
|
780
|
+
set -euo pipefail
|
|
781
|
+
for root in \
|
|
782
|
+
.ebk/performance-cost-input/aggregate \
|
|
783
|
+
.ebk/performance-cost-input/release; do
|
|
784
|
+
test "$(find "$root" -mindepth 1 -maxdepth 1 -type f | wc -l | tr -d ' ')" = 1
|
|
785
|
+
test "$(find "$root" -mindepth 1 -maxdepth 1 ! -type f | wc -l | tr -d ' ')" = 0
|
|
786
|
+
done
|
|
787
|
+
node -e '
|
|
788
|
+
const { createHash } = require("node:crypto");
|
|
789
|
+
const { lstatSync, readFileSync, realpathSync } = require("node:fs");
|
|
790
|
+
const { relative, resolve } = require("node:path");
|
|
791
|
+
for (const [path, root, expected] of [
|
|
792
|
+
[process.argv[1], process.argv[3], process.argv[5]],
|
|
793
|
+
[process.argv[2], process.argv[4], process.argv[6]],
|
|
794
|
+
]) {
|
|
795
|
+
const metadata = lstatSync(path);
|
|
796
|
+
if (
|
|
797
|
+
!metadata.isFile() ||
|
|
798
|
+
metadata.isSymbolicLink() ||
|
|
799
|
+
metadata.size <= 0 ||
|
|
800
|
+
metadata.size > 1024 * 1024 ||
|
|
801
|
+
relative(realpathSync(root), realpathSync(path)) !==
|
|
802
|
+
relative(resolve(root), resolve(path)) ||
|
|
803
|
+
createHash("sha256").update(readFileSync(path)).digest("hex") !== expected
|
|
804
|
+
) process.exit(1);
|
|
805
|
+
}
|
|
806
|
+
' "$EBK_AGGREGATE_COUNT_EVIDENCE_PATH" "$EBK_RELEASE_BINDING_PATH" \
|
|
807
|
+
.ebk/performance-cost-input/aggregate \
|
|
808
|
+
.ebk/performance-cost-input/release \
|
|
809
|
+
"$EBK_EXPECTED_AGGREGATE_COUNT_EVIDENCE_DIGEST" \
|
|
810
|
+
"$EBK_EXPECTED_RELEASE_BINDING_DIGEST"
|
|
811
|
+
- uses: ${configureAws}
|
|
812
|
+
with:
|
|
813
|
+
aws-region: \${{ inputs.target_region }}
|
|
814
|
+
role-session-name: ebk-performance-cost-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
815
|
+
role-to-assume: \${{ secrets.AWS_PERFORMANCE_COST_ROLE_ARN }}
|
|
816
|
+
- name: Withhold OIDC request bearer from protected execution
|
|
817
|
+
env:
|
|
818
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
819
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
820
|
+
run: |
|
|
821
|
+
{
|
|
822
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_URL='
|
|
823
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_TOKEN='
|
|
824
|
+
} >> "$GITHUB_ENV"
|
|
825
|
+
- name: Verify exact protected account and inputs
|
|
826
|
+
env:
|
|
827
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
828
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
829
|
+
run: |
|
|
830
|
+
set -euo pipefail
|
|
831
|
+
test "$(aws sts get-caller-identity --query Account --output text)" = "$AWS_EXPECTED_ACCOUNT_ID"
|
|
832
|
+
test "$AWS_REGION" = "$EBK_APPROVED_REGION"
|
|
833
|
+
- name: Collect exact closed-window AWS billing actuals
|
|
834
|
+
env:
|
|
835
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
836
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
837
|
+
run: |
|
|
838
|
+
export EBK_WORKSPACE="$(node -p 'require("./package.json").name')"
|
|
839
|
+
pnpm nx run "$EBK_PROJECT:performance-cost-collect"
|
|
840
|
+
- name: Clear current performance-cost AWS session credentials
|
|
841
|
+
if: always()
|
|
842
|
+
env:
|
|
843
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
844
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
845
|
+
run: |
|
|
846
|
+
{
|
|
847
|
+
echo 'AWS_ACCESS_KEY_ID='
|
|
848
|
+
echo 'AWS_SECRET_ACCESS_KEY='
|
|
849
|
+
echo 'AWS_SESSION_TOKEN='
|
|
850
|
+
echo 'AWS_SECURITY_TOKEN='
|
|
851
|
+
} >> "$GITHUB_ENV"
|
|
852
|
+
- name: Retain protected billing evidence
|
|
853
|
+
env:
|
|
854
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
855
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
856
|
+
uses: ${uploadArtifact}
|
|
857
|
+
with:
|
|
858
|
+
name: performance-cost-\${{ inputs.stage }}-\${{ inputs.project }}-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
859
|
+
if-no-files-found: error
|
|
860
|
+
include-hidden-files: true
|
|
861
|
+
retention-days: 90
|
|
862
|
+
path: packages/\${{ inputs.project }}/.ebk/evidence/performance-cost-actual.json
|
|
863
|
+
`,
|
|
864
|
+
};
|
|
865
|
+
}
|
|
866
|
+
//# sourceMappingURL=workspace-files-performance-cost.js.map
|