@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,801 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.PROTECTED_PERFORMANCE_LOAD_CLEANUP_TARGET = exports.PROTECTED_PERFORMANCE_LOAD_RUN_TARGET = exports.PROTECTED_PERFORMANCE_LOAD_WORKFLOW_PATH = void 0;
|
|
4
|
+
exports.resolveProtectedPerformanceOrigin = resolveProtectedPerformanceOrigin;
|
|
5
|
+
exports.deriveProtectedPerformanceEndpoint = deriveProtectedPerformanceEndpoint;
|
|
6
|
+
exports.validateProtectedPerformanceHmacMaterial = validateProtectedPerformanceHmacMaterial;
|
|
7
|
+
exports.materializeProtectedPerformanceHmacKey = materializeProtectedPerformanceHmacKey;
|
|
8
|
+
exports.createProtectedPerformanceLoadSliceTargets = createProtectedPerformanceLoadSliceTargets;
|
|
9
|
+
exports.renderProtectedPerformanceLoadWorkflowPlan = renderProtectedPerformanceLoadWorkflowPlan;
|
|
10
|
+
const node_fs_1 = require("node:fs");
|
|
11
|
+
const index_js_1 = require("../../git-policy/index.js");
|
|
12
|
+
const tool_versions_js_1 = require("./tool-versions.js");
|
|
13
|
+
exports.PROTECTED_PERFORMANCE_LOAD_WORKFLOW_PATH = '.github/workflows/performance-load.yml';
|
|
14
|
+
exports.PROTECTED_PERFORMANCE_LOAD_RUN_TARGET = 'performance-run';
|
|
15
|
+
exports.PROTECTED_PERFORMANCE_LOAD_CLEANUP_TARGET = 'performance-load-cleanup';
|
|
16
|
+
/**
|
|
17
|
+
* Selects one exact deployed performance Router from the protected
|
|
18
|
+
* environment's fleet map. The map is environment authority rather than a
|
|
19
|
+
* workflow-dispatch input so callers cannot substitute a target.
|
|
20
|
+
*/
|
|
21
|
+
function resolveProtectedPerformanceOrigin(originsJson, project) {
|
|
22
|
+
const refuse = () => {
|
|
23
|
+
throw new Error('Protected performance origin map is invalid.');
|
|
24
|
+
};
|
|
25
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(project) ||
|
|
26
|
+
Buffer.byteLength(originsJson, 'utf8') === 0 ||
|
|
27
|
+
Buffer.byteLength(originsJson, 'utf8') > 48 * 1024) {
|
|
28
|
+
return refuse();
|
|
29
|
+
}
|
|
30
|
+
let parsed;
|
|
31
|
+
try {
|
|
32
|
+
parsed = JSON.parse(originsJson);
|
|
33
|
+
}
|
|
34
|
+
catch {
|
|
35
|
+
return refuse();
|
|
36
|
+
}
|
|
37
|
+
if (!parsed || typeof parsed !== 'object' || Array.isArray(parsed)) {
|
|
38
|
+
return refuse();
|
|
39
|
+
}
|
|
40
|
+
const entries = Object.entries(parsed);
|
|
41
|
+
const localHostnames = new Set([
|
|
42
|
+
'0.0.0.0',
|
|
43
|
+
'127.0.0.1',
|
|
44
|
+
'::1',
|
|
45
|
+
'[::1]',
|
|
46
|
+
'localhost',
|
|
47
|
+
]);
|
|
48
|
+
if (entries.length === 0 ||
|
|
49
|
+
entries.some(([slice, value]) => {
|
|
50
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(slice) ||
|
|
51
|
+
typeof value !== 'string') {
|
|
52
|
+
return true;
|
|
53
|
+
}
|
|
54
|
+
try {
|
|
55
|
+
const origin = new URL(value);
|
|
56
|
+
return (origin.protocol !== 'https:' ||
|
|
57
|
+
Boolean(origin.username) ||
|
|
58
|
+
Boolean(origin.password) ||
|
|
59
|
+
origin.pathname !== '/' ||
|
|
60
|
+
Boolean(origin.search) ||
|
|
61
|
+
Boolean(origin.hash) ||
|
|
62
|
+
origin.origin !== value ||
|
|
63
|
+
localHostnames.has(origin.hostname.toLowerCase()) ||
|
|
64
|
+
origin.hostname.toLowerCase().endsWith('.localhost'));
|
|
65
|
+
}
|
|
66
|
+
catch {
|
|
67
|
+
return true;
|
|
68
|
+
}
|
|
69
|
+
})) {
|
|
70
|
+
return refuse();
|
|
71
|
+
}
|
|
72
|
+
const selected = parsed[project];
|
|
73
|
+
return typeof selected === 'string' ? selected : refuse();
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* Resolves the one endpoint a protected performance job may call. This
|
|
77
|
+
* function is deliberately self-contained because its exact implementation is
|
|
78
|
+
* embedded in the generated workflow and executed again in focused tests.
|
|
79
|
+
*/
|
|
80
|
+
function deriveProtectedPerformanceEndpoint(input) {
|
|
81
|
+
const refuse = (detail) => {
|
|
82
|
+
throw new Error(`Protected performance target authority is invalid: ${detail}.`);
|
|
83
|
+
};
|
|
84
|
+
const expectedRef = input.stage === 'staging'
|
|
85
|
+
? 'refs/heads/develop'
|
|
86
|
+
: input.stage === 'production'
|
|
87
|
+
? 'refs/heads/main'
|
|
88
|
+
: undefined;
|
|
89
|
+
if (!expectedRef || input.protectedRef !== expectedRef) {
|
|
90
|
+
refuse('stage and protected branch do not match');
|
|
91
|
+
}
|
|
92
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(input.project)) {
|
|
93
|
+
refuse('Product Slice identity is not normalized');
|
|
94
|
+
}
|
|
95
|
+
if (!/^[0-9]{12}$/.test(input.expectedAccountId) ||
|
|
96
|
+
input.actualAccountId !== input.expectedAccountId) {
|
|
97
|
+
refuse('assumed account does not match the environment');
|
|
98
|
+
}
|
|
99
|
+
if (!/^sha256:[a-f0-9]{64}$/.test(input.actualAccountFingerprint) ||
|
|
100
|
+
input.actualAccountFingerprint !== input.targetAccountFingerprint) {
|
|
101
|
+
refuse('account fingerprint does not match the reviewed target');
|
|
102
|
+
}
|
|
103
|
+
const regionPattern = /^(?:(?:af|ap|ca|cn|eu|il|me|mx|sa|us)(?:-(?:gov|iso|isob|isoe|isof))?|eusc-[a-z]{2})-[a-z]+-\d$/;
|
|
104
|
+
if (!regionPattern.test(input.targetRegion) ||
|
|
105
|
+
input.targetRegion !== input.approvedRegion) {
|
|
106
|
+
refuse('Region does not match the environment');
|
|
107
|
+
}
|
|
108
|
+
const partition = input.targetRegion.startsWith('cn-')
|
|
109
|
+
? 'aws-cn'
|
|
110
|
+
: input.targetRegion.startsWith('us-gov-')
|
|
111
|
+
? 'aws-us-gov'
|
|
112
|
+
: input.targetRegion.startsWith('us-isob-')
|
|
113
|
+
? 'aws-iso-b'
|
|
114
|
+
: input.targetRegion.startsWith('us-isoe-')
|
|
115
|
+
? 'aws-iso-e'
|
|
116
|
+
: input.targetRegion.startsWith('us-isof-')
|
|
117
|
+
? 'aws-iso-f'
|
|
118
|
+
: input.targetRegion.startsWith('us-iso-')
|
|
119
|
+
? 'aws-iso'
|
|
120
|
+
: input.targetRegion.startsWith('eusc-')
|
|
121
|
+
? 'aws-eusc'
|
|
122
|
+
: 'aws';
|
|
123
|
+
const rolePrefix = `arn:${partition}:iam::${input.expectedAccountId}:role/`;
|
|
124
|
+
if (!input.roleArn.startsWith(rolePrefix) ||
|
|
125
|
+
!/^[A-Za-z0-9+=,.@_/-]{1,512}$/.test(input.roleArn.slice(rolePrefix.length))) {
|
|
126
|
+
refuse('OIDC role does not belong to the environment account');
|
|
127
|
+
}
|
|
128
|
+
let origin;
|
|
129
|
+
try {
|
|
130
|
+
origin = new URL(input.approvedOrigin);
|
|
131
|
+
}
|
|
132
|
+
catch {
|
|
133
|
+
return refuse('environment origin is malformed');
|
|
134
|
+
}
|
|
135
|
+
const localHostnames = new Set([
|
|
136
|
+
'0.0.0.0',
|
|
137
|
+
'127.0.0.1',
|
|
138
|
+
'::1',
|
|
139
|
+
'[::1]',
|
|
140
|
+
'localhost',
|
|
141
|
+
]);
|
|
142
|
+
if (origin.protocol !== 'https:' ||
|
|
143
|
+
origin.username ||
|
|
144
|
+
origin.password ||
|
|
145
|
+
origin.pathname !== '/' ||
|
|
146
|
+
origin.search ||
|
|
147
|
+
origin.hash ||
|
|
148
|
+
origin.origin !== input.approvedOrigin ||
|
|
149
|
+
localHostnames.has(origin.hostname.toLowerCase()) ||
|
|
150
|
+
origin.hostname.toLowerCase().endsWith('.localhost')) {
|
|
151
|
+
refuse('environment origin is not one exact deployed HTTPS origin');
|
|
152
|
+
}
|
|
153
|
+
if (!input.plan ||
|
|
154
|
+
typeof input.plan !== 'object' ||
|
|
155
|
+
Array.isArray(input.plan)) {
|
|
156
|
+
return refuse('plan is not an object');
|
|
157
|
+
}
|
|
158
|
+
const plan = input.plan;
|
|
159
|
+
const target = plan['target'] &&
|
|
160
|
+
typeof plan['target'] === 'object' &&
|
|
161
|
+
!Array.isArray(plan['target'])
|
|
162
|
+
? plan['target']
|
|
163
|
+
: undefined;
|
|
164
|
+
const scenarioContracts = {
|
|
165
|
+
'api-peak': {
|
|
166
|
+
suffix: '/__ebk/performance/api-lambda',
|
|
167
|
+
workload: 'api-lambda',
|
|
168
|
+
},
|
|
169
|
+
'async-burst': {
|
|
170
|
+
suffix: '/__ebk/performance/async-worker',
|
|
171
|
+
workload: 'async-worker',
|
|
172
|
+
},
|
|
173
|
+
'database-cold-resume': {
|
|
174
|
+
suffix: '/__ebk/performance/database',
|
|
175
|
+
workload: 'database',
|
|
176
|
+
},
|
|
177
|
+
'service-extension': {
|
|
178
|
+
suffix: '/__ebk/performance/service',
|
|
179
|
+
workload: 'service',
|
|
180
|
+
},
|
|
181
|
+
};
|
|
182
|
+
const scenario = typeof plan['scenarioId'] === 'string'
|
|
183
|
+
? scenarioContracts[plan['scenarioId']]
|
|
184
|
+
: undefined;
|
|
185
|
+
if (plan['slice'] !== input.project ||
|
|
186
|
+
!scenario ||
|
|
187
|
+
plan['workload'] !== scenario.workload ||
|
|
188
|
+
!target ||
|
|
189
|
+
target['accountFingerprint'] !== input.targetAccountFingerprint ||
|
|
190
|
+
target['region'] !== input.targetRegion ||
|
|
191
|
+
target['stage'] !== input.stage ||
|
|
192
|
+
typeof target['endpoint'] !== 'string') {
|
|
193
|
+
return refuse('plan does not bind the exact Slice, adapter, and target');
|
|
194
|
+
}
|
|
195
|
+
let endpoint;
|
|
196
|
+
try {
|
|
197
|
+
endpoint = new URL(target['endpoint']);
|
|
198
|
+
}
|
|
199
|
+
catch {
|
|
200
|
+
return refuse('plan endpoint is malformed');
|
|
201
|
+
}
|
|
202
|
+
if (endpoint.protocol !== 'https:' ||
|
|
203
|
+
endpoint.username ||
|
|
204
|
+
endpoint.password ||
|
|
205
|
+
endpoint.search ||
|
|
206
|
+
endpoint.hash ||
|
|
207
|
+
endpoint.href !== target['endpoint'] ||
|
|
208
|
+
endpoint.origin !== input.approvedOrigin ||
|
|
209
|
+
endpoint.pathname !== `/${input.project}${scenario.suffix}` ||
|
|
210
|
+
localHostnames.has(endpoint.hostname.toLowerCase()) ||
|
|
211
|
+
endpoint.hostname.toLowerCase().endsWith('.localhost')) {
|
|
212
|
+
refuse('plan endpoint differs from the environment-approved Slice endpoint');
|
|
213
|
+
}
|
|
214
|
+
return endpoint.href;
|
|
215
|
+
}
|
|
216
|
+
/**
|
|
217
|
+
* Parses the bounded Secrets Manager value without including supplied bytes in
|
|
218
|
+
* any diagnostic.
|
|
219
|
+
*/
|
|
220
|
+
function validateProtectedPerformanceHmacMaterial(secretBytes) {
|
|
221
|
+
const refuse = () => {
|
|
222
|
+
throw new Error('Protected performance HMAC material is invalid.');
|
|
223
|
+
};
|
|
224
|
+
const bytes = typeof secretBytes === 'string'
|
|
225
|
+
? Buffer.from(secretBytes, 'utf8')
|
|
226
|
+
: Buffer.from(secretBytes);
|
|
227
|
+
if (bytes.length === 0 || bytes.length > 64 * 1024)
|
|
228
|
+
return refuse();
|
|
229
|
+
let value;
|
|
230
|
+
try {
|
|
231
|
+
value = JSON.parse(bytes.toString('utf8'));
|
|
232
|
+
}
|
|
233
|
+
catch {
|
|
234
|
+
return refuse();
|
|
235
|
+
}
|
|
236
|
+
if (!value || typeof value !== 'object' || Array.isArray(value)) {
|
|
237
|
+
return refuse();
|
|
238
|
+
}
|
|
239
|
+
const material = value;
|
|
240
|
+
const keys = Object.keys(material).sort();
|
|
241
|
+
const validKey = (candidate) => {
|
|
242
|
+
if (!candidate ||
|
|
243
|
+
typeof candidate !== 'object' ||
|
|
244
|
+
Array.isArray(candidate)) {
|
|
245
|
+
return false;
|
|
246
|
+
}
|
|
247
|
+
const key = candidate;
|
|
248
|
+
const secret = typeof key['secret'] === 'string' ? key['secret'] : '';
|
|
249
|
+
const decoded = /^[A-Za-z0-9_-]{43}$/.test(secret)
|
|
250
|
+
? Buffer.from(secret, 'base64url')
|
|
251
|
+
: Buffer.alloc(0);
|
|
252
|
+
return (Object.keys(key).sort().join(',') === 'id,secret' &&
|
|
253
|
+
typeof key['id'] === 'string' &&
|
|
254
|
+
/^[A-Za-z0-9][A-Za-z0-9._-]{0,63}$/.test(key['id']) &&
|
|
255
|
+
decoded.length === 32 &&
|
|
256
|
+
decoded.toString('base64url') === secret);
|
|
257
|
+
};
|
|
258
|
+
if ((keys.join(',') !== 'current' && keys.join(',') !== 'current,previous') ||
|
|
259
|
+
!validKey(material['current']) ||
|
|
260
|
+
(material['previous'] !== undefined &&
|
|
261
|
+
(!validKey(material['previous']) ||
|
|
262
|
+
material['previous'].id === material['current'].id ||
|
|
263
|
+
material['previous'].secret === material['current'].secret))) {
|
|
264
|
+
return refuse();
|
|
265
|
+
}
|
|
266
|
+
return Object.freeze({
|
|
267
|
+
id: material['current'].id,
|
|
268
|
+
secret: material['current'].secret,
|
|
269
|
+
});
|
|
270
|
+
}
|
|
271
|
+
/**
|
|
272
|
+
* Creates one job-scoped key file and refuses every pre-existing path,
|
|
273
|
+
* including symbolic links. The result never returns secret material.
|
|
274
|
+
*/
|
|
275
|
+
function materializeProtectedPerformanceHmacKey(outputPath, secretBytes, fileSystem = { chmodSync: node_fs_1.chmodSync, lstatSync: node_fs_1.lstatSync, rmSync: node_fs_1.rmSync, writeFileSync: node_fs_1.writeFileSync }) {
|
|
276
|
+
const { chmodSync: chmod, lstatSync: lstat, rmSync: remove, writeFileSync: write, } = fileSystem;
|
|
277
|
+
const key = validateProtectedPerformanceHmacMaterial(secretBytes);
|
|
278
|
+
const bytes = Buffer.from(`${JSON.stringify(key)}\n`, 'utf8');
|
|
279
|
+
let created = false;
|
|
280
|
+
try {
|
|
281
|
+
write(outputPath, bytes, {
|
|
282
|
+
encoding: 'utf8',
|
|
283
|
+
flag: 'wx',
|
|
284
|
+
mode: 0o600,
|
|
285
|
+
});
|
|
286
|
+
created = true;
|
|
287
|
+
chmod(outputPath, 0o600);
|
|
288
|
+
const metadata = lstat(outputPath);
|
|
289
|
+
if (!metadata.isFile() ||
|
|
290
|
+
metadata.isSymbolicLink() ||
|
|
291
|
+
(process.platform !== 'win32' && (metadata.mode & 0o077) !== 0) ||
|
|
292
|
+
(typeof process.getuid === 'function' &&
|
|
293
|
+
metadata.uid !== process.getuid()) ||
|
|
294
|
+
metadata.size !== bytes.length ||
|
|
295
|
+
metadata.size > 2_048) {
|
|
296
|
+
throw new Error('unsafe output');
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
catch {
|
|
300
|
+
if (created)
|
|
301
|
+
remove(outputPath, { force: true });
|
|
302
|
+
throw new Error('Protected performance HMAC key output must be one new private regular file.');
|
|
303
|
+
}
|
|
304
|
+
return Object.freeze({ byteLength: bytes.length, id: key.id });
|
|
305
|
+
}
|
|
306
|
+
function sliceName(value) {
|
|
307
|
+
const normalized = value.trim();
|
|
308
|
+
if (!/^[a-z][a-z0-9]*(?:-[a-z0-9]+)*$/.test(normalized)) {
|
|
309
|
+
throw new Error('Protected performance target metadata requires one normalized Product Slice name.');
|
|
310
|
+
}
|
|
311
|
+
return normalized;
|
|
312
|
+
}
|
|
313
|
+
function createProtectedPerformanceLoadSliceTargets(slice) {
|
|
314
|
+
const project = sliceName(slice);
|
|
315
|
+
return {
|
|
316
|
+
[exports.PROTECTED_PERFORMANCE_LOAD_RUN_TARGET]: {
|
|
317
|
+
cache: false,
|
|
318
|
+
executor: 'nx:run-commands',
|
|
319
|
+
options: {
|
|
320
|
+
command: 'node scripts/performance-load-runner.mjs',
|
|
321
|
+
cwd: `packages/${project}`,
|
|
322
|
+
forwardAllArgs: false,
|
|
323
|
+
},
|
|
324
|
+
outputs: [
|
|
325
|
+
'{projectRoot}/.ebk/evidence/performance-load-authorization.json',
|
|
326
|
+
'{projectRoot}/.ebk/evidence/performance-load-effects.jsonl',
|
|
327
|
+
'{projectRoot}/.ebk/evidence/performance-load-report.json',
|
|
328
|
+
],
|
|
329
|
+
},
|
|
330
|
+
[exports.PROTECTED_PERFORMANCE_LOAD_CLEANUP_TARGET]: {
|
|
331
|
+
cache: false,
|
|
332
|
+
executor: 'nx:run-commands',
|
|
333
|
+
options: {
|
|
334
|
+
command: 'node scripts/performance-load-cleanup.mjs',
|
|
335
|
+
cwd: `packages/${project}`,
|
|
336
|
+
forwardAllArgs: false,
|
|
337
|
+
},
|
|
338
|
+
outputs: ['{projectRoot}/.ebk/evidence/performance-load-cleanup.json'],
|
|
339
|
+
},
|
|
340
|
+
};
|
|
341
|
+
}
|
|
342
|
+
/**
|
|
343
|
+
* Renders the only workflow allowed to execute a protected load runner.
|
|
344
|
+
* The caller merges the returned fixed Slice targets into generated project
|
|
345
|
+
* metadata; neither target forwards user-supplied commands or arguments.
|
|
346
|
+
*/
|
|
347
|
+
function renderProtectedPerformanceLoadWorkflowPlan(sliceForTargetMetadata) {
|
|
348
|
+
const checkout = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.checkout);
|
|
349
|
+
const configureAws = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.configureAwsCredentials);
|
|
350
|
+
const pnpmSetup = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.pnpmSetup);
|
|
351
|
+
const setupNode = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.setupNode);
|
|
352
|
+
const uploadArtifact = (0, index_js_1.pinnedAction)(index_js_1.GITHUB_ACTION_PINS.uploadArtifact);
|
|
353
|
+
const endpointAuthoritySource = Buffer.from(deriveProtectedPerformanceEndpoint.toString(), 'utf8').toString('base64');
|
|
354
|
+
const originAuthoritySource = Buffer.from(resolveProtectedPerformanceOrigin.toString(), 'utf8').toString('base64');
|
|
355
|
+
const hmacMaterializerSource = Buffer.from(`const validateProtectedPerformanceHmacMaterial = (${validateProtectedPerformanceHmacMaterial.toString()});
|
|
356
|
+
return (${materializeProtectedPerformanceHmacKey.toString()});`, 'utf8').toString('base64');
|
|
357
|
+
return {
|
|
358
|
+
files: {
|
|
359
|
+
[exports.PROTECTED_PERFORMANCE_LOAD_WORKFLOW_PATH]: `name: Protected performance load
|
|
360
|
+
|
|
361
|
+
on:
|
|
362
|
+
workflow_dispatch:
|
|
363
|
+
inputs:
|
|
364
|
+
stage:
|
|
365
|
+
description: Protected target stage; staging is the normal path
|
|
366
|
+
required: true
|
|
367
|
+
default: staging
|
|
368
|
+
type: choice
|
|
369
|
+
options: [staging, production]
|
|
370
|
+
project:
|
|
371
|
+
description: Exact Product Slice project
|
|
372
|
+
required: true
|
|
373
|
+
type: string
|
|
374
|
+
candidate:
|
|
375
|
+
description: Exact full candidate Git object ID at the protected ref
|
|
376
|
+
required: true
|
|
377
|
+
type: string
|
|
378
|
+
plan:
|
|
379
|
+
description: Exact repository-relative protected load plan JSON path
|
|
380
|
+
required: true
|
|
381
|
+
type: string
|
|
382
|
+
approval:
|
|
383
|
+
description: Exact repository-relative protected approval JSON path
|
|
384
|
+
required: true
|
|
385
|
+
type: string
|
|
386
|
+
target_account_fingerprint:
|
|
387
|
+
description: Exact SHA-256 fingerprint of the approved AWS account ID
|
|
388
|
+
required: true
|
|
389
|
+
type: string
|
|
390
|
+
target_region:
|
|
391
|
+
description: Exact approved AWS Region
|
|
392
|
+
required: true
|
|
393
|
+
type: string
|
|
394
|
+
|
|
395
|
+
permissions:
|
|
396
|
+
contents: read
|
|
397
|
+
|
|
398
|
+
concurrency:
|
|
399
|
+
group: protected-performance-load-\${{ inputs.stage }}-\${{ inputs.project }}-\${{ inputs.target_account_fingerprint }}
|
|
400
|
+
cancel-in-progress: false
|
|
401
|
+
|
|
402
|
+
jobs:
|
|
403
|
+
run:
|
|
404
|
+
environment: performance-load-\${{ inputs.stage }}
|
|
405
|
+
permissions:
|
|
406
|
+
contents: read
|
|
407
|
+
id-token: write
|
|
408
|
+
runs-on: ubuntu-latest
|
|
409
|
+
timeout-minutes: 50
|
|
410
|
+
env:
|
|
411
|
+
AWS_EXPECTED_ACCOUNT_ID: \${{ vars.AWS_EXPECTED_ACCOUNT_ID }}
|
|
412
|
+
AWS_PERFORMANCE_LOAD_ROLE_ARN: \${{ secrets.AWS_PERFORMANCE_LOAD_ROLE_ARN }}
|
|
413
|
+
AWS_REGION: \${{ inputs.target_region }}
|
|
414
|
+
EBK_ACCOUNT_FINGERPRINT: \${{ inputs.target_account_fingerprint }}
|
|
415
|
+
EBK_APPROVED_REGION: \${{ vars.AWS_REGION }}
|
|
416
|
+
EBK_PERFORMANCE_ORIGINS_JSON: \${{ vars.EBK_PERFORMANCE_ORIGINS_JSON }}
|
|
417
|
+
EBK_PERFORMANCE_LOAD_HMAC_KEY_PATH: \${{ runner.temp }}/ebk-performance-load-hmac-\${{ github.run_id }}-\${{ github.run_attempt }}.json
|
|
418
|
+
EBK_PROJECT: \${{ inputs.project }}
|
|
419
|
+
EBK_PROTECTED_LOAD_APPROVAL_PATH: \${{ inputs.approval }}
|
|
420
|
+
EBK_PROTECTED_LOAD_PLAN_PATH: \${{ inputs.plan }}
|
|
421
|
+
EBK_SOURCE_COMMIT: \${{ inputs.candidate }}
|
|
422
|
+
EBK_STAGE: \${{ inputs.stage }}
|
|
423
|
+
NX_DAEMON: 'false'
|
|
424
|
+
steps:
|
|
425
|
+
- name: Validate exact protected request
|
|
426
|
+
env:
|
|
427
|
+
EBK_PROTECTED_REF: \${{ github.ref }}
|
|
428
|
+
EBK_WORKFLOW_COMMIT: \${{ github.sha }}
|
|
429
|
+
run: |
|
|
430
|
+
set -euo pipefail
|
|
431
|
+
case "$EBK_STAGE:$EBK_PROTECTED_REF" in
|
|
432
|
+
staging:refs/heads/develop|production:refs/heads/main) ;;
|
|
433
|
+
*) echo 'Performance load stage does not match its protected branch'; exit 1 ;;
|
|
434
|
+
esac
|
|
435
|
+
case "$EBK_PROJECT" in
|
|
436
|
+
''|-*|*-|*--*|*[!a-z0-9-]*) echo 'Project must be one normalized Product Slice name'; exit 1 ;;
|
|
437
|
+
esac
|
|
438
|
+
test -n "$EBK_PERFORMANCE_ORIGINS_JSON" ||
|
|
439
|
+
{ echo "$EBK_STAGE EBK_PERFORMANCE_ORIGINS_JSON is required"; exit 1; }
|
|
440
|
+
performance_origin="$(node -e '
|
|
441
|
+
try {
|
|
442
|
+
const source = Buffer.from(
|
|
443
|
+
"${originAuthoritySource}",
|
|
444
|
+
"base64",
|
|
445
|
+
).toString("utf8");
|
|
446
|
+
const resolveProtectedPerformanceOrigin = Function(
|
|
447
|
+
"return (" + source + ");",
|
|
448
|
+
)();
|
|
449
|
+
process.stdout.write(resolveProtectedPerformanceOrigin(
|
|
450
|
+
process.env.EBK_PERFORMANCE_ORIGINS_JSON,
|
|
451
|
+
process.env.EBK_PROJECT,
|
|
452
|
+
));
|
|
453
|
+
} catch {
|
|
454
|
+
process.exit(1);
|
|
455
|
+
}
|
|
456
|
+
')" ||
|
|
457
|
+
{ echo 'Protected performance origin map is invalid'; exit 1; }
|
|
458
|
+
printf 'EBK_APPROVED_ORIGIN=%s\\n' "$performance_origin" >> "$GITHUB_ENV"
|
|
459
|
+
case "$EBK_SOURCE_COMMIT" in
|
|
460
|
+
*[!0-9a-f]*|'') echo 'Candidate must be a full lowercase Git object ID'; exit 1 ;;
|
|
461
|
+
esac
|
|
462
|
+
case "\${#EBK_SOURCE_COMMIT}" in
|
|
463
|
+
40|64) ;;
|
|
464
|
+
*) echo 'Candidate must contain exactly 40 or 64 hexadecimal characters'; exit 1 ;;
|
|
465
|
+
esac
|
|
466
|
+
test "$EBK_SOURCE_COMMIT" = "$EBK_WORKFLOW_COMMIT" ||
|
|
467
|
+
{ echo 'Candidate must equal the exact workflow ref commit'; exit 1; }
|
|
468
|
+
plan_prefix="packages/$EBK_PROJECT/.ebk/performance-load/plans/"
|
|
469
|
+
approval_prefix="packages/$EBK_PROJECT/.ebk/performance-load/approvals/"
|
|
470
|
+
plan_name="\${EBK_PROTECTED_LOAD_PLAN_PATH#"$plan_prefix"}"
|
|
471
|
+
approval_name="\${EBK_PROTECTED_LOAD_APPROVAL_PATH#"$approval_prefix"}"
|
|
472
|
+
case "$EBK_PROTECTED_LOAD_PLAN_PATH:$plan_name" in
|
|
473
|
+
"$plan_prefix"[a-z0-9]*.json:[a-z0-9]*.json) ;;
|
|
474
|
+
*) echo 'Plan must be one exact Product Slice protected-load plan file'; exit 1 ;;
|
|
475
|
+
esac
|
|
476
|
+
case "$plan_name" in
|
|
477
|
+
*[!a-z0-9._-]*|*/*) echo 'Plan filename contains unsupported characters'; exit 1 ;;
|
|
478
|
+
esac
|
|
479
|
+
case "$EBK_PROTECTED_LOAD_APPROVAL_PATH:$approval_name" in
|
|
480
|
+
"$approval_prefix"[a-z0-9]*.json:[a-z0-9]*.json) ;;
|
|
481
|
+
*) echo 'Approval must be one exact Product Slice protected-load approval file'; exit 1 ;;
|
|
482
|
+
esac
|
|
483
|
+
case "$approval_name" in
|
|
484
|
+
*[!a-z0-9._-]*|*/*) echo 'Approval filename contains unsupported characters'; exit 1 ;;
|
|
485
|
+
esac
|
|
486
|
+
case "$AWS_REGION" in
|
|
487
|
+
[a-z][a-z]-[a-z]*-[0-9]) ;;
|
|
488
|
+
*) echo 'Target Region is invalid'; exit 1 ;;
|
|
489
|
+
esac
|
|
490
|
+
case "$EBK_ACCOUNT_FINGERPRINT" in
|
|
491
|
+
sha256:*) ;;
|
|
492
|
+
*) echo 'Target account fingerprint must use sha256'; exit 1 ;;
|
|
493
|
+
esac
|
|
494
|
+
fingerprint_digest="\${EBK_ACCOUNT_FINGERPRINT#sha256:}"
|
|
495
|
+
case "$fingerprint_digest" in
|
|
496
|
+
*[!0-9a-f]*|'') echo 'Target account fingerprint must be lowercase SHA-256'; exit 1 ;;
|
|
497
|
+
esac
|
|
498
|
+
test "\${#fingerprint_digest}" -eq 64 ||
|
|
499
|
+
{ echo 'Target account fingerprint must contain exactly 64 hexadecimal characters'; exit 1; }
|
|
500
|
+
test -n "$AWS_PERFORMANCE_LOAD_ROLE_ARN" ||
|
|
501
|
+
{ echo "$EBK_STAGE AWS_PERFORMANCE_LOAD_ROLE_ARN is required"; exit 1; }
|
|
502
|
+
test -n "$AWS_EXPECTED_ACCOUNT_ID" ||
|
|
503
|
+
{ echo "$EBK_STAGE AWS_EXPECTED_ACCOUNT_ID is required"; exit 1; }
|
|
504
|
+
case "$AWS_REGION" in
|
|
505
|
+
cn-*) aws_partition=aws-cn ;;
|
|
506
|
+
us-gov-*) aws_partition=aws-us-gov ;;
|
|
507
|
+
us-isob-*) aws_partition=aws-iso-b ;;
|
|
508
|
+
us-isoe-*) aws_partition=aws-iso-e ;;
|
|
509
|
+
us-isof-*) aws_partition=aws-iso-f ;;
|
|
510
|
+
us-iso-*) aws_partition=aws-iso ;;
|
|
511
|
+
eusc-*) aws_partition=aws-eusc ;;
|
|
512
|
+
*) aws_partition=aws ;;
|
|
513
|
+
esac
|
|
514
|
+
case "$AWS_PERFORMANCE_LOAD_ROLE_ARN" in
|
|
515
|
+
arn:$aws_partition:iam::$AWS_EXPECTED_ACCOUNT_ID:role/*) ;;
|
|
516
|
+
*) echo 'Performance load role does not belong to the expected account'; exit 1 ;;
|
|
517
|
+
esac
|
|
518
|
+
- uses: ${checkout}
|
|
519
|
+
with:
|
|
520
|
+
fetch-depth: 1
|
|
521
|
+
persist-credentials: false
|
|
522
|
+
ref: \${{ inputs.candidate }}
|
|
523
|
+
- uses: ${pnpmSetup}
|
|
524
|
+
- uses: ${setupNode}
|
|
525
|
+
with:
|
|
526
|
+
node-version: ${tool_versions_js_1.WORKSPACE_NODE_VERSION}
|
|
527
|
+
cache: pnpm
|
|
528
|
+
- run: pnpm install --frozen-lockfile --ignore-scripts --ignore-pnpmfile
|
|
529
|
+
- name: Verify managed workspace integrity before AWS authority
|
|
530
|
+
run: pnpm nx run "$(node -p 'require("./package.json").name'):workspace-health"
|
|
531
|
+
- uses: ${configureAws}
|
|
532
|
+
with:
|
|
533
|
+
aws-region: \${{ inputs.target_region }}
|
|
534
|
+
role-session-name: ebk-performance-load-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
535
|
+
role-to-assume: \${{ secrets.AWS_PERFORMANCE_LOAD_ROLE_ARN }}
|
|
536
|
+
- name: Withhold OIDC request bearer from protected execution
|
|
537
|
+
env:
|
|
538
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
539
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
540
|
+
run: |
|
|
541
|
+
{
|
|
542
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_URL='
|
|
543
|
+
echo 'ACTIONS_ID_TOKEN_REQUEST_TOKEN='
|
|
544
|
+
} >> "$GITHUB_ENV"
|
|
545
|
+
- name: Verify exact protected target
|
|
546
|
+
env:
|
|
547
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
548
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
549
|
+
run: |
|
|
550
|
+
set -euo pipefail
|
|
551
|
+
actual_account="$(aws sts get-caller-identity --query Account --output text)"
|
|
552
|
+
test "$actual_account" = "$AWS_EXPECTED_ACCOUNT_ID" ||
|
|
553
|
+
{ echo 'Assumed account does not equal the environment-approved account'; exit 1; }
|
|
554
|
+
actual_fingerprint="sha256:$(printf '%s' "$actual_account" | sha256sum | cut -d ' ' -f 1)"
|
|
555
|
+
test "$actual_fingerprint" = "$EBK_ACCOUNT_FINGERPRINT" ||
|
|
556
|
+
{ echo 'Assumed account fingerprint does not equal the reviewed target'; exit 1; }
|
|
557
|
+
test "$AWS_REGION" = "$EBK_APPROVED_REGION" ||
|
|
558
|
+
{ echo 'Target Region does not equal the environment-approved Region'; exit 1; }
|
|
559
|
+
test -f "$EBK_PROTECTED_LOAD_PLAN_PATH" ||
|
|
560
|
+
{ echo 'Exact protected load plan is absent from the candidate'; exit 1; }
|
|
561
|
+
test -f "$EBK_PROTECTED_LOAD_APPROVAL_PATH" ||
|
|
562
|
+
{ echo 'Exact protected load approval is absent from the candidate'; exit 1; }
|
|
563
|
+
node -e '
|
|
564
|
+
const { lstatSync, realpathSync } = require("node:fs");
|
|
565
|
+
const { relative, resolve, sep } = require("node:path");
|
|
566
|
+
const repository = realpathSync(process.cwd());
|
|
567
|
+
for (const [path, root] of [
|
|
568
|
+
[process.argv[1], process.argv[3]],
|
|
569
|
+
[process.argv[2], process.argv[4]],
|
|
570
|
+
]) {
|
|
571
|
+
const lexicalRoot = resolve(root);
|
|
572
|
+
const rootChild = relative(repository, lexicalRoot);
|
|
573
|
+
if (
|
|
574
|
+
!rootChild ||
|
|
575
|
+
rootChild === ".." ||
|
|
576
|
+
rootChild.startsWith(".." + sep)
|
|
577
|
+
) process.exit(1);
|
|
578
|
+
let cursor = repository;
|
|
579
|
+
for (const component of rootChild.split(sep).filter(Boolean)) {
|
|
580
|
+
cursor = resolve(cursor, component);
|
|
581
|
+
const componentMetadata = lstatSync(cursor);
|
|
582
|
+
if (
|
|
583
|
+
!componentMetadata.isDirectory() ||
|
|
584
|
+
componentMetadata.isSymbolicLink()
|
|
585
|
+
) process.exit(1);
|
|
586
|
+
}
|
|
587
|
+
const metadata = lstatSync(path);
|
|
588
|
+
const child = relative(lexicalRoot, resolve(path));
|
|
589
|
+
if (
|
|
590
|
+
!metadata.isFile() ||
|
|
591
|
+
metadata.isSymbolicLink() ||
|
|
592
|
+
metadata.size <= 0 ||
|
|
593
|
+
metadata.size > 1024 * 1024 ||
|
|
594
|
+
!/^[a-z0-9][a-z0-9._-]*[.]json$/.test(child) ||
|
|
595
|
+
child.includes(sep) ||
|
|
596
|
+
relative(realpathSync(lexicalRoot), realpathSync(path)) !== child
|
|
597
|
+
) {
|
|
598
|
+
process.exit(1);
|
|
599
|
+
}
|
|
600
|
+
}
|
|
601
|
+
' "$EBK_PROTECTED_LOAD_PLAN_PATH" "$EBK_PROTECTED_LOAD_APPROVAL_PATH" \
|
|
602
|
+
"packages/$EBK_PROJECT/.ebk/performance-load/plans" \
|
|
603
|
+
"packages/$EBK_PROJECT/.ebk/performance-load/approvals" ||
|
|
604
|
+
{ echo 'Protected load inputs must be regular files below exact managed directories'; exit 1; }
|
|
605
|
+
target_endpoint="$(EBK_ACTUAL_ACCOUNT_ID="$actual_account" \
|
|
606
|
+
EBK_ACTUAL_ACCOUNT_FINGERPRINT="$actual_fingerprint" \
|
|
607
|
+
node -e '
|
|
608
|
+
const { readFileSync } = require("node:fs");
|
|
609
|
+
try {
|
|
610
|
+
const source = Buffer.from(
|
|
611
|
+
"${endpointAuthoritySource}",
|
|
612
|
+
"base64",
|
|
613
|
+
).toString("utf8");
|
|
614
|
+
const deriveProtectedPerformanceEndpoint = Function(
|
|
615
|
+
"return (" + source + ");",
|
|
616
|
+
)();
|
|
617
|
+
const plan = JSON.parse(readFileSync(process.argv[1], "utf8"));
|
|
618
|
+
process.stdout.write(
|
|
619
|
+
deriveProtectedPerformanceEndpoint({
|
|
620
|
+
actualAccountFingerprint:
|
|
621
|
+
process.env.EBK_ACTUAL_ACCOUNT_FINGERPRINT,
|
|
622
|
+
actualAccountId: process.env.EBK_ACTUAL_ACCOUNT_ID,
|
|
623
|
+
approvedOrigin: process.env.EBK_APPROVED_ORIGIN,
|
|
624
|
+
approvedRegion: process.env.EBK_APPROVED_REGION,
|
|
625
|
+
expectedAccountId: process.env.AWS_EXPECTED_ACCOUNT_ID,
|
|
626
|
+
plan,
|
|
627
|
+
project: process.env.EBK_PROJECT,
|
|
628
|
+
protectedRef: process.env.GITHUB_REF,
|
|
629
|
+
roleArn: process.env.AWS_PERFORMANCE_LOAD_ROLE_ARN,
|
|
630
|
+
stage: process.env.EBK_STAGE,
|
|
631
|
+
targetAccountFingerprint:
|
|
632
|
+
process.env.EBK_ACCOUNT_FINGERPRINT,
|
|
633
|
+
targetRegion: process.env.AWS_REGION,
|
|
634
|
+
}),
|
|
635
|
+
);
|
|
636
|
+
} catch {
|
|
637
|
+
process.exit(1);
|
|
638
|
+
}
|
|
639
|
+
' "$EBK_PROTECTED_LOAD_PLAN_PATH")" ||
|
|
640
|
+
{ echo 'Plan target does not equal its environment-approved Slice endpoint'; exit 1; }
|
|
641
|
+
printf 'EBK_LOAD_ENDPOINT=%s\\n' "$target_endpoint" >> "$GITHUB_ENV"
|
|
642
|
+
if [ "$EBK_STAGE" = production ]; then
|
|
643
|
+
node -e '
|
|
644
|
+
const approval = JSON.parse(
|
|
645
|
+
require("node:fs").readFileSync(process.argv[1], "utf8"),
|
|
646
|
+
);
|
|
647
|
+
const exception = approval.productionException;
|
|
648
|
+
if (
|
|
649
|
+
exception?.humanApproved !== true ||
|
|
650
|
+
typeof exception.reason !== "string" ||
|
|
651
|
+
!exception.reason.trim() ||
|
|
652
|
+
typeof exception.evidenceRef !== "string" ||
|
|
653
|
+
!exception.evidenceRef.trim()
|
|
654
|
+
) process.exit(1);
|
|
655
|
+
' "$EBK_PROTECTED_LOAD_APPROVAL_PATH" ||
|
|
656
|
+
{ echo 'Production requires explicit human-reviewed exceptional evidence'; exit 1; }
|
|
657
|
+
fi
|
|
658
|
+
- name: Materialize the exact Slice HMAC generation
|
|
659
|
+
env:
|
|
660
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
661
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
662
|
+
run: |
|
|
663
|
+
set -euo pipefail
|
|
664
|
+
logical_name="$(node -e '
|
|
665
|
+
const project = process.argv[1];
|
|
666
|
+
const logicalName =
|
|
667
|
+
project.split("-")
|
|
668
|
+
.map((part) => part[0].toUpperCase() + part.slice(1))
|
|
669
|
+
.join("") + "PerformanceLoadHmacKeys";
|
|
670
|
+
if (!/^[A-Za-z][A-Za-z0-9]{0,63}$/.test(logicalName)) {
|
|
671
|
+
process.exit(1);
|
|
672
|
+
}
|
|
673
|
+
process.stdout.write(logicalName);
|
|
674
|
+
' "$EBK_PROJECT")" ||
|
|
675
|
+
{ echo 'Slice HMAC logical name is invalid'; exit 1; }
|
|
676
|
+
secret_name="ebk/$EBK_STAGE/$EBK_PROJECT/$logical_name"
|
|
677
|
+
aws secretsmanager get-secret-value \
|
|
678
|
+
--secret-id "$secret_name" \
|
|
679
|
+
--version-stage AWSCURRENT \
|
|
680
|
+
--query SecretString \
|
|
681
|
+
--output text |
|
|
682
|
+
node -e '
|
|
683
|
+
const {
|
|
684
|
+
chmodSync,
|
|
685
|
+
lstatSync,
|
|
686
|
+
rmSync,
|
|
687
|
+
writeFileSync,
|
|
688
|
+
} = require("node:fs");
|
|
689
|
+
const source = Buffer.from(
|
|
690
|
+
"${hmacMaterializerSource}",
|
|
691
|
+
"base64",
|
|
692
|
+
).toString("utf8");
|
|
693
|
+
const materializeProtectedPerformanceHmacKey =
|
|
694
|
+
Function(source)();
|
|
695
|
+
const chunks = [];
|
|
696
|
+
let size = 0;
|
|
697
|
+
let oversized = false;
|
|
698
|
+
process.stdin.on("data", (chunk) => {
|
|
699
|
+
size += chunk.byteLength;
|
|
700
|
+
if (size > 64 * 1024) {
|
|
701
|
+
oversized = true;
|
|
702
|
+
chunks.length = 0;
|
|
703
|
+
} else if (!oversized) {
|
|
704
|
+
chunks.push(chunk);
|
|
705
|
+
}
|
|
706
|
+
});
|
|
707
|
+
process.stdin.on("end", () => {
|
|
708
|
+
if (oversized) process.exit(1);
|
|
709
|
+
try {
|
|
710
|
+
materializeProtectedPerformanceHmacKey(
|
|
711
|
+
process.argv[1],
|
|
712
|
+
Buffer.concat(chunks),
|
|
713
|
+
{
|
|
714
|
+
chmodSync,
|
|
715
|
+
lstatSync,
|
|
716
|
+
rmSync,
|
|
717
|
+
writeFileSync,
|
|
718
|
+
},
|
|
719
|
+
);
|
|
720
|
+
} catch {
|
|
721
|
+
process.exit(1);
|
|
722
|
+
}
|
|
723
|
+
});
|
|
724
|
+
' "$EBK_PERFORMANCE_LOAD_HMAC_KEY_PATH"
|
|
725
|
+
- name: Clear current performance-load AWS session credentials
|
|
726
|
+
if: always()
|
|
727
|
+
env:
|
|
728
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
729
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
730
|
+
run: |
|
|
731
|
+
{
|
|
732
|
+
echo 'AWS_ACCESS_KEY_ID='
|
|
733
|
+
echo 'AWS_SECRET_ACCESS_KEY='
|
|
734
|
+
echo 'AWS_SESSION_TOKEN='
|
|
735
|
+
echo 'AWS_SECURITY_TOKEN='
|
|
736
|
+
} >> "$GITHUB_ENV"
|
|
737
|
+
- name: Guard and run the exact allowlisted load target
|
|
738
|
+
env:
|
|
739
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
740
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
741
|
+
run: |
|
|
742
|
+
set -euo pipefail
|
|
743
|
+
evidence_directory="packages/$EBK_PROJECT/.ebk/evidence"
|
|
744
|
+
mkdir -p "$evidence_directory"
|
|
745
|
+
chmod 700 "$evidence_directory"
|
|
746
|
+
export EBK_EVIDENCE_NOW="$(date -u +%Y-%m-%dT%H:%M:%S.000Z)"
|
|
747
|
+
export EBK_EMERGENCY_STOP_PATH="$evidence_directory/performance-load-emergency-stop"
|
|
748
|
+
export EBK_PROTECTED_LOAD_AUTHORIZATION_PATH="$evidence_directory/performance-load-authorization.json"
|
|
749
|
+
emergency_cleanup() {
|
|
750
|
+
trap - INT TERM
|
|
751
|
+
: > "$EBK_EMERGENCY_STOP_PATH"
|
|
752
|
+
chmod 600 "$EBK_EMERGENCY_STOP_PATH"
|
|
753
|
+
pnpm nx run "$EBK_PROJECT:${exports.PROTECTED_PERFORMANCE_LOAD_CLEANUP_TARGET}" || true
|
|
754
|
+
exit 130
|
|
755
|
+
}
|
|
756
|
+
trap emergency_cleanup INT TERM
|
|
757
|
+
node "packages/$EBK_PROJECT/scripts/performance-load-guard.mjs" |
|
|
758
|
+
tee "$EBK_PROTECTED_LOAD_AUTHORIZATION_PATH"
|
|
759
|
+
pnpm nx run "$EBK_PROJECT:${exports.PROTECTED_PERFORMANCE_LOAD_RUN_TARGET}"
|
|
760
|
+
- name: Enforce idempotent protected-load cleanup
|
|
761
|
+
if: always()
|
|
762
|
+
env:
|
|
763
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
764
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
765
|
+
run: pnpm nx run "$EBK_PROJECT:${exports.PROTECTED_PERFORMANCE_LOAD_CLEANUP_TARGET}"
|
|
766
|
+
- name: Remove the job-scoped Slice HMAC material
|
|
767
|
+
if: always()
|
|
768
|
+
env:
|
|
769
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
770
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
771
|
+
run: |
|
|
772
|
+
node -e '
|
|
773
|
+
const { existsSync, lstatSync, rmSync } = require("node:fs");
|
|
774
|
+
const path = process.argv[1];
|
|
775
|
+
if (!existsSync(path)) process.exit(0);
|
|
776
|
+
const metadata = lstatSync(path);
|
|
777
|
+
if (!metadata.isFile() || metadata.isSymbolicLink()) process.exit(1);
|
|
778
|
+
rmSync(path);
|
|
779
|
+
' "$EBK_PERFORMANCE_LOAD_HMAC_KEY_PATH"
|
|
780
|
+
- name: Retain protected performance evidence
|
|
781
|
+
if: always()
|
|
782
|
+
env:
|
|
783
|
+
ACTIONS_ID_TOKEN_REQUEST_TOKEN: ''
|
|
784
|
+
ACTIONS_ID_TOKEN_REQUEST_URL: ''
|
|
785
|
+
uses: ${uploadArtifact}
|
|
786
|
+
with:
|
|
787
|
+
name: performance-load-\${{ inputs.stage }}-\${{ inputs.project }}-\${{ github.run_id }}-\${{ github.run_attempt }}
|
|
788
|
+
if-no-files-found: error
|
|
789
|
+
include-hidden-files: true
|
|
790
|
+
retention-days: 30
|
|
791
|
+
path: |
|
|
792
|
+
packages/\${{ inputs.project }}/.ebk/evidence/performance-load-authorization.json
|
|
793
|
+
packages/\${{ inputs.project }}/.ebk/evidence/performance-load-cleanup.json
|
|
794
|
+
packages/\${{ inputs.project }}/.ebk/evidence/performance-load-effects.jsonl
|
|
795
|
+
packages/\${{ inputs.project }}/.ebk/evidence/performance-load-report.json
|
|
796
|
+
`,
|
|
797
|
+
},
|
|
798
|
+
requiredSliceTargets: createProtectedPerformanceLoadSliceTargets(sliceForTargetMetadata),
|
|
799
|
+
};
|
|
800
|
+
}
|
|
801
|
+
//# sourceMappingURL=workspace-files-performance-load.js.map
|