@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 @@
|
|
|
1
|
+
{"version":3,"file":"built-in-plan-authorization-files.js","sourceRoot":"","sources":["../../../../../../packages/nx/src/generators/slice/built-in-plan-authorization-files.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,559 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.renderStandardSliceAuthorizationInfrastructureFiles = renderStandardSliceAuthorizationInfrastructureFiles;
|
|
4
|
+
const MACHINE_CLIENT_PROVISIONER_SOURCE = `import boto3,datetime,json,logging,os,urllib.request
|
|
5
|
+
from botocore.exceptions import ClientError
|
|
6
|
+
cognito=boto3.client("cognito-idp")
|
|
7
|
+
secrets=boto3.client("secretsmanager")
|
|
8
|
+
logger=logging.getLogger()
|
|
9
|
+
logger.setLevel(logging.INFO)
|
|
10
|
+
|
|
11
|
+
def emit(event,level,outcome,message,error_code=None):
|
|
12
|
+
attributes={
|
|
13
|
+
"requestType":str(event.get("RequestType","unknown"))[:32],
|
|
14
|
+
}
|
|
15
|
+
if error_code:
|
|
16
|
+
attributes["errorCode"]=str(error_code)[:128]
|
|
17
|
+
record={
|
|
18
|
+
"attributes":attributes,
|
|
19
|
+
"component":"machine-client-provisioner",
|
|
20
|
+
"feature":"authorization",
|
|
21
|
+
"level":level,
|
|
22
|
+
"message":message,
|
|
23
|
+
"operation":"machine-client.provision",
|
|
24
|
+
"outcome":outcome,
|
|
25
|
+
"requestId":str(event.get("RequestId","unknown"))[:128],
|
|
26
|
+
"schemaVersion":1,
|
|
27
|
+
"slice":os.environ.get("EBK_SLICE",""),
|
|
28
|
+
"stage":os.environ.get("EBK_STAGE",""),
|
|
29
|
+
"timestamp":datetime.datetime.now(
|
|
30
|
+
datetime.timezone.utc
|
|
31
|
+
).isoformat(timespec="milliseconds").replace("+00:00","Z"),
|
|
32
|
+
"workspace":os.environ.get("EBK_WORKSPACE",""),
|
|
33
|
+
}
|
|
34
|
+
encoded=json.dumps(record,separators=(",",":"),sort_keys=True)
|
|
35
|
+
if level=="ERROR":
|
|
36
|
+
logger.error(encoded)
|
|
37
|
+
else:
|
|
38
|
+
logger.info(encoded)
|
|
39
|
+
|
|
40
|
+
def respond(event,status,physical,data=None,reason=None):
|
|
41
|
+
body=json.dumps({
|
|
42
|
+
"Status":status,
|
|
43
|
+
"Reason":reason or status,
|
|
44
|
+
"PhysicalResourceId":physical,
|
|
45
|
+
"StackId":event["StackId"],
|
|
46
|
+
"RequestId":event["RequestId"],
|
|
47
|
+
"LogicalResourceId":event["LogicalResourceId"],
|
|
48
|
+
"NoEcho":False,
|
|
49
|
+
"Data":data or {},
|
|
50
|
+
}).encode()
|
|
51
|
+
request=urllib.request.Request(
|
|
52
|
+
event["ResponseURL"],
|
|
53
|
+
data=body,
|
|
54
|
+
headers={"content-type":"","content-length":str(len(body))},
|
|
55
|
+
method="PUT",
|
|
56
|
+
)
|
|
57
|
+
with urllib.request.urlopen(request):
|
|
58
|
+
pass
|
|
59
|
+
|
|
60
|
+
def read_version(secret_arn,stage):
|
|
61
|
+
try:
|
|
62
|
+
value=secrets.get_secret_value(
|
|
63
|
+
SecretId=secret_arn,
|
|
64
|
+
VersionStage=stage,
|
|
65
|
+
)
|
|
66
|
+
document=json.loads(value["SecretString"])
|
|
67
|
+
document["_versionId"]=value["VersionId"]
|
|
68
|
+
return document
|
|
69
|
+
except ClientError as error:
|
|
70
|
+
if error.response["Error"]["Code"] in (
|
|
71
|
+
"ResourceNotFoundException",
|
|
72
|
+
"InvalidRequestException",
|
|
73
|
+
):
|
|
74
|
+
return None
|
|
75
|
+
raise
|
|
76
|
+
|
|
77
|
+
def find_client(user_pool_id,client_name):
|
|
78
|
+
paginator=cognito.get_paginator("list_user_pool_clients")
|
|
79
|
+
for page in paginator.paginate(UserPoolId=user_pool_id,MaxResults=60):
|
|
80
|
+
for summary in page.get("UserPoolClients",[]):
|
|
81
|
+
if summary.get("ClientName")==client_name:
|
|
82
|
+
return cognito.describe_user_pool_client(
|
|
83
|
+
UserPoolId=user_pool_id,
|
|
84
|
+
ClientId=summary["ClientId"],
|
|
85
|
+
)["UserPoolClient"]
|
|
86
|
+
return None
|
|
87
|
+
|
|
88
|
+
def ensure_client(properties):
|
|
89
|
+
client=find_client(properties["UserPoolId"],properties["ClientName"])
|
|
90
|
+
if client:
|
|
91
|
+
return client
|
|
92
|
+
return cognito.create_user_pool_client(
|
|
93
|
+
UserPoolId=properties["UserPoolId"],
|
|
94
|
+
ClientName=properties["ClientName"],
|
|
95
|
+
GenerateSecret=True,
|
|
96
|
+
AllowedOAuthFlows=["client_credentials"],
|
|
97
|
+
AllowedOAuthFlowsUserPoolClient=True,
|
|
98
|
+
AllowedOAuthScopes=properties["Scopes"],
|
|
99
|
+
AccessTokenValidity=15,
|
|
100
|
+
TokenValidityUnits={"AccessToken":"minutes"},
|
|
101
|
+
EnableTokenRevocation=True,
|
|
102
|
+
PreventUserExistenceErrors="ENABLED",
|
|
103
|
+
)["UserPoolClient"]
|
|
104
|
+
|
|
105
|
+
def delete_client(user_pool_id,client_id):
|
|
106
|
+
try:
|
|
107
|
+
cognito.delete_user_pool_client(
|
|
108
|
+
UserPoolId=user_pool_id,
|
|
109
|
+
ClientId=client_id,
|
|
110
|
+
)
|
|
111
|
+
except ClientError as error:
|
|
112
|
+
if error.response["Error"]["Code"]!="ResourceNotFoundException":
|
|
113
|
+
raise
|
|
114
|
+
|
|
115
|
+
def handler(event,context):
|
|
116
|
+
properties=event["ResourceProperties"]
|
|
117
|
+
physical="ebk-machine-client-"+properties["ResourceServerIdentifier"]
|
|
118
|
+
try:
|
|
119
|
+
current=read_version(properties["SecretArn"],"AWSCURRENT")
|
|
120
|
+
previous=read_version(properties["SecretArn"],"AWSPREVIOUS")
|
|
121
|
+
if event["RequestType"]=="Delete":
|
|
122
|
+
for document in (current,previous):
|
|
123
|
+
if document and document.get("clientId"):
|
|
124
|
+
delete_client(properties["UserPoolId"],document["clientId"])
|
|
125
|
+
emit(
|
|
126
|
+
event,
|
|
127
|
+
"INFO",
|
|
128
|
+
"success",
|
|
129
|
+
"Machine client provisioning completed.",
|
|
130
|
+
)
|
|
131
|
+
respond(event,"SUCCESS",physical)
|
|
132
|
+
return
|
|
133
|
+
|
|
134
|
+
generation=properties["CredentialGeneration"]
|
|
135
|
+
retire=properties["RetirePreviousGeneration"]=="true"
|
|
136
|
+
if retire and not current:
|
|
137
|
+
raise ValueError("No current machine credential generation exists.")
|
|
138
|
+
client=ensure_client(properties)
|
|
139
|
+
client_id=client["ClientId"]
|
|
140
|
+
rollback=(
|
|
141
|
+
current
|
|
142
|
+
and previous
|
|
143
|
+
and current.get("generation")!=generation
|
|
144
|
+
and previous.get("generation")==generation
|
|
145
|
+
)
|
|
146
|
+
if rollback:
|
|
147
|
+
if retire:
|
|
148
|
+
raise ValueError("Restore and prove the rollback generation before retiring the displaced generation.")
|
|
149
|
+
if previous.get("clientId")!=client_id:
|
|
150
|
+
raise ValueError("Rollback generation does not match its existing Cognito client.")
|
|
151
|
+
secrets.update_secret_version_stage(
|
|
152
|
+
SecretId=properties["SecretArn"],
|
|
153
|
+
VersionStage="AWSCURRENT",
|
|
154
|
+
MoveToVersionId=previous["_versionId"],
|
|
155
|
+
RemoveFromVersionId=current["_versionId"],
|
|
156
|
+
)
|
|
157
|
+
current,previous=previous,current
|
|
158
|
+
elif current and current.get("generation")!=generation:
|
|
159
|
+
if previous:
|
|
160
|
+
raise ValueError("Retire the previous generation before beginning another rotation.")
|
|
161
|
+
old_slot=current["generation"].split("-",1)[0]
|
|
162
|
+
new_slot=generation.split("-",1)[0]
|
|
163
|
+
if old_slot==new_slot:
|
|
164
|
+
raise ValueError("Credential generation must alternate blue and green slots.")
|
|
165
|
+
if retire:
|
|
166
|
+
raise ValueError("Create and prove a new generation before retiring the previous one.")
|
|
167
|
+
|
|
168
|
+
if not rollback and (
|
|
169
|
+
not current
|
|
170
|
+
or current.get("generation")!=generation
|
|
171
|
+
or current.get("clientId")!=client_id
|
|
172
|
+
):
|
|
173
|
+
secrets.put_secret_value(
|
|
174
|
+
SecretId=properties["SecretArn"],
|
|
175
|
+
SecretString=json.dumps({
|
|
176
|
+
"clientId":client_id,
|
|
177
|
+
"clientSecret":client["ClientSecret"],
|
|
178
|
+
"generation":generation,
|
|
179
|
+
},separators=(",",":")),
|
|
180
|
+
)
|
|
181
|
+
previous=current
|
|
182
|
+
|
|
183
|
+
if retire:
|
|
184
|
+
if not previous:
|
|
185
|
+
raise ValueError("No previous machine credential generation exists.")
|
|
186
|
+
previous_id=previous.get("clientId")
|
|
187
|
+
if previous_id and previous_id!=client_id:
|
|
188
|
+
delete_client(properties["UserPoolId"],previous_id)
|
|
189
|
+
version_id=previous.get("_versionId")
|
|
190
|
+
if version_id:
|
|
191
|
+
secrets.update_secret_version_stage(
|
|
192
|
+
SecretId=properties["SecretArn"],
|
|
193
|
+
VersionStage="AWSPREVIOUS",
|
|
194
|
+
RemoveFromVersionId=version_id,
|
|
195
|
+
)
|
|
196
|
+
|
|
197
|
+
accepted_client_ids=[client_id]
|
|
198
|
+
if (
|
|
199
|
+
not retire
|
|
200
|
+
and previous
|
|
201
|
+
and previous.get("clientId")
|
|
202
|
+
and previous["clientId"]!=client_id
|
|
203
|
+
):
|
|
204
|
+
accepted_client_ids.append(previous["clientId"])
|
|
205
|
+
emit(
|
|
206
|
+
event,
|
|
207
|
+
"INFO",
|
|
208
|
+
"success",
|
|
209
|
+
"Machine client provisioning completed.",
|
|
210
|
+
)
|
|
211
|
+
respond(event,"SUCCESS",physical,{
|
|
212
|
+
"AcceptedClientIdsJson":json.dumps(
|
|
213
|
+
accepted_client_ids,
|
|
214
|
+
separators=(",",":"),
|
|
215
|
+
),
|
|
216
|
+
"ClientId":client_id,
|
|
217
|
+
})
|
|
218
|
+
except Exception as error:
|
|
219
|
+
emit(
|
|
220
|
+
event,
|
|
221
|
+
"ERROR",
|
|
222
|
+
"failure",
|
|
223
|
+
"Machine client provisioning failed.",
|
|
224
|
+
type(error).__name__,
|
|
225
|
+
)
|
|
226
|
+
respond(event,"FAILED",physical,reason=type(error).__name__)
|
|
227
|
+
`;
|
|
228
|
+
/** @internal */
|
|
229
|
+
function renderStandardSliceAuthorizationInfrastructureFiles(name, pascalName) {
|
|
230
|
+
return {
|
|
231
|
+
'authorization/machine-client-provisioner.py': MACHINE_CLIENT_PROVISIONER_SOURCE + '\n',
|
|
232
|
+
'infra/authorization.ts': `import { createHash } from 'node:crypto';
|
|
233
|
+
|
|
234
|
+
const MACHINE_AUTHORIZATION_SCOPE_NAMES = [
|
|
235
|
+
'delegation-use',
|
|
236
|
+
'proof-read',
|
|
237
|
+
] as const;
|
|
238
|
+
|
|
239
|
+
export type MachineCredentialGeneration =
|
|
240
|
+
| \`blue-\${number}\`
|
|
241
|
+
| \`green-\${number}\`;
|
|
242
|
+
|
|
243
|
+
export interface StandardSliceMachineAuthorizationOptions {
|
|
244
|
+
credentialGeneration: MachineCredentialGeneration;
|
|
245
|
+
provisionerFunctionArn: any;
|
|
246
|
+
retirePreviousGeneration?: boolean;
|
|
247
|
+
tokenEndpoint: any;
|
|
248
|
+
userPoolId: any;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
function requireCredentialGeneration(
|
|
252
|
+
value: string,
|
|
253
|
+
): MachineCredentialGeneration {
|
|
254
|
+
if (!/^(?:blue|green)-[1-9][0-9]{0,11}$/.test(value)) {
|
|
255
|
+
throw new Error(
|
|
256
|
+
'Machine credential generation must select blue or green plus a bounded positive integer.',
|
|
257
|
+
);
|
|
258
|
+
}
|
|
259
|
+
return value as MachineCredentialGeneration;
|
|
260
|
+
}
|
|
261
|
+
|
|
262
|
+
function machineClientName(
|
|
263
|
+
stage: string,
|
|
264
|
+
generation: MachineCredentialGeneration,
|
|
265
|
+
): string {
|
|
266
|
+
const value = '${name}-machine-' + stage + '-' + generation;
|
|
267
|
+
if (value.length <= 128) return value;
|
|
268
|
+
const digest = createHash('sha256')
|
|
269
|
+
.update(value, 'utf8')
|
|
270
|
+
.digest('hex')
|
|
271
|
+
.slice(0, 12);
|
|
272
|
+
return value.slice(0, 115) + '-' + digest;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
function requiredStackOutput(stack: any, key: string) {
|
|
276
|
+
return stack.outputs.apply((outputs: Record<string, string>) => {
|
|
277
|
+
const value = outputs?.[key];
|
|
278
|
+
if (!value) {
|
|
279
|
+
throw new Error(
|
|
280
|
+
'Machine authorization provisioning omitted required output ' + key + '.',
|
|
281
|
+
);
|
|
282
|
+
}
|
|
283
|
+
return value;
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
export function standardSliceMachineClientProvisionerPermissions(options: {
|
|
288
|
+
userPoolArn: any;
|
|
289
|
+
}) {
|
|
290
|
+
const account = aws.getCallerIdentityOutput({});
|
|
291
|
+
const partition = aws.getPartitionOutput({});
|
|
292
|
+
const region = aws.getRegionOutput({});
|
|
293
|
+
const secretArn =
|
|
294
|
+
$interpolate\`arn:\${partition.partition}:secretsmanager:\${region.name}:\${account.accountId}:secret:ebk/\${$app.stage}/${name}/authorization/machine-client-*\`;
|
|
295
|
+
return [
|
|
296
|
+
{
|
|
297
|
+
actions: [
|
|
298
|
+
'cognito-idp:CreateUserPoolClient',
|
|
299
|
+
'cognito-idp:DeleteUserPoolClient',
|
|
300
|
+
'cognito-idp:DescribeUserPoolClient',
|
|
301
|
+
'cognito-idp:ListUserPoolClients',
|
|
302
|
+
],
|
|
303
|
+
resources: [options.userPoolArn],
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
actions: [
|
|
307
|
+
'secretsmanager:GetSecretValue',
|
|
308
|
+
'secretsmanager:PutSecretValue',
|
|
309
|
+
'secretsmanager:UpdateSecretVersionStage',
|
|
310
|
+
],
|
|
311
|
+
resources: [secretArn],
|
|
312
|
+
},
|
|
313
|
+
];
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
/**
|
|
317
|
+
* Provisions the Slice resource server and a confidential client entirely
|
|
318
|
+
* inside AWS. The nested stack exports the non-secret client ID and secret
|
|
319
|
+
* container ARN; the generated client secret never crosses into SST/Pulumi
|
|
320
|
+
* inputs, outputs, logs, or state.
|
|
321
|
+
*/
|
|
322
|
+
export function createStandardSliceMachineAuthorization(
|
|
323
|
+
options: StandardSliceMachineAuthorizationOptions,
|
|
324
|
+
) {
|
|
325
|
+
const credentialGeneration = requireCredentialGeneration(
|
|
326
|
+
options.credentialGeneration,
|
|
327
|
+
);
|
|
328
|
+
const resourceServerIdentifier = '${name}-' + $app.stage;
|
|
329
|
+
const template = {
|
|
330
|
+
AWSTemplateFormatVersion: '2010-09-09',
|
|
331
|
+
Description:
|
|
332
|
+
'EBK AWS-internal confidential Cognito client provisioning contract.',
|
|
333
|
+
Parameters: {
|
|
334
|
+
ClientName: { Type: 'String' },
|
|
335
|
+
CredentialGeneration: {
|
|
336
|
+
AllowedPattern: '^(blue|green)-[1-9][0-9]{0,11}$',
|
|
337
|
+
Type: 'String',
|
|
338
|
+
},
|
|
339
|
+
ResourceServerIdentifier: { Type: 'String' },
|
|
340
|
+
ProvisionerFunctionArn: { Type: 'String' },
|
|
341
|
+
RetirePreviousGeneration: {
|
|
342
|
+
AllowedValues: ['false', 'true'],
|
|
343
|
+
Type: 'String',
|
|
344
|
+
},
|
|
345
|
+
SecretName: { Type: 'String' },
|
|
346
|
+
UserPoolId: { Type: 'String' },
|
|
347
|
+
},
|
|
348
|
+
Resources: {
|
|
349
|
+
SliceAdminGroup: {
|
|
350
|
+
Type: 'AWS::Cognito::UserPoolGroup',
|
|
351
|
+
Properties: {
|
|
352
|
+
Description:
|
|
353
|
+
'Direct human recovery and non-author review authority for ${name}.',
|
|
354
|
+
GroupName: '${name}-admin',
|
|
355
|
+
Precedence: 10,
|
|
356
|
+
UserPoolId: { Ref: 'UserPoolId' },
|
|
357
|
+
},
|
|
358
|
+
},
|
|
359
|
+
SliceTestWriterGroup: {
|
|
360
|
+
Type: 'AWS::Cognito::UserPoolGroup',
|
|
361
|
+
Properties: {
|
|
362
|
+
Description:
|
|
363
|
+
'Run-scoped synthetic-write authority for ${name} deployed proof.',
|
|
364
|
+
GroupName: '${name}-test-writer',
|
|
365
|
+
Precedence: 20,
|
|
366
|
+
UserPoolId: { Ref: 'UserPoolId' },
|
|
367
|
+
},
|
|
368
|
+
},
|
|
369
|
+
MachineClientSecret: {
|
|
370
|
+
Type: 'AWS::SecretsManager::Secret',
|
|
371
|
+
Properties: {
|
|
372
|
+
Description:
|
|
373
|
+
'EBK generated ${name} confidential machine-client credential.',
|
|
374
|
+
Name: { Ref: 'SecretName' },
|
|
375
|
+
Tags: [
|
|
376
|
+
{ Key: 'ebk:management', Value: 'generated-machine-credential' },
|
|
377
|
+
{ Key: 'ebk:slice', Value: '${name}' },
|
|
378
|
+
{ Key: 'sst:stage', Value: $app.stage },
|
|
379
|
+
],
|
|
380
|
+
},
|
|
381
|
+
},
|
|
382
|
+
MachineResourceServer: {
|
|
383
|
+
Type: 'AWS::Cognito::UserPoolResourceServer',
|
|
384
|
+
Properties: {
|
|
385
|
+
Identifier: { Ref: 'ResourceServerIdentifier' },
|
|
386
|
+
Name: '${pascalName}MachineAuthorization',
|
|
387
|
+
Scopes: [
|
|
388
|
+
{
|
|
389
|
+
ScopeDescription:
|
|
390
|
+
'Use an online ${name} attended-delegation capability.',
|
|
391
|
+
ScopeName: MACHINE_AUTHORIZATION_SCOPE_NAMES[0],
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
ScopeDescription:
|
|
395
|
+
'Call the narrow ${name} machine-authorization proof.',
|
|
396
|
+
ScopeName: MACHINE_AUTHORIZATION_SCOPE_NAMES[1],
|
|
397
|
+
},
|
|
398
|
+
],
|
|
399
|
+
UserPoolId: { Ref: 'UserPoolId' },
|
|
400
|
+
},
|
|
401
|
+
},
|
|
402
|
+
MachineClient: {
|
|
403
|
+
Type: 'Custom::EbkCognitoMachineClient',
|
|
404
|
+
DependsOn: ['MachineResourceServer'],
|
|
405
|
+
Properties: {
|
|
406
|
+
ClientName: { Ref: 'ClientName' },
|
|
407
|
+
CredentialGeneration: { Ref: 'CredentialGeneration' },
|
|
408
|
+
ResourceServerIdentifier: {
|
|
409
|
+
Ref: 'ResourceServerIdentifier',
|
|
410
|
+
},
|
|
411
|
+
RetirePreviousGeneration: {
|
|
412
|
+
Ref: 'RetirePreviousGeneration',
|
|
413
|
+
},
|
|
414
|
+
Scopes: MACHINE_AUTHORIZATION_SCOPE_NAMES.map((scope) => ({
|
|
415
|
+
'Fn::Join': [
|
|
416
|
+
'/',
|
|
417
|
+
[{ Ref: 'ResourceServerIdentifier' }, scope],
|
|
418
|
+
],
|
|
419
|
+
})),
|
|
420
|
+
SecretArn: { Ref: 'MachineClientSecret' },
|
|
421
|
+
ServiceToken: { Ref: 'ProvisionerFunctionArn' },
|
|
422
|
+
UserPoolId: { Ref: 'UserPoolId' },
|
|
423
|
+
},
|
|
424
|
+
},
|
|
425
|
+
},
|
|
426
|
+
Outputs: {
|
|
427
|
+
AcceptedClientIdsJson: {
|
|
428
|
+
Value: {
|
|
429
|
+
'Fn::GetAtt': ['MachineClient', 'AcceptedClientIdsJson'],
|
|
430
|
+
},
|
|
431
|
+
},
|
|
432
|
+
AdminGroupName: { Value: { Ref: 'SliceAdminGroup' } },
|
|
433
|
+
ClientId: {
|
|
434
|
+
Value: { 'Fn::GetAtt': ['MachineClient', 'ClientId'] },
|
|
435
|
+
},
|
|
436
|
+
ResourceServerIdentifier: {
|
|
437
|
+
Value: { Ref: 'ResourceServerIdentifier' },
|
|
438
|
+
},
|
|
439
|
+
SecretArn: { Value: { Ref: 'MachineClientSecret' } },
|
|
440
|
+
TestWriterGroupName: {
|
|
441
|
+
Value: { Ref: 'SliceTestWriterGroup' },
|
|
442
|
+
},
|
|
443
|
+
},
|
|
444
|
+
};
|
|
445
|
+
|
|
446
|
+
const stack = new aws.cloudformation.Stack(
|
|
447
|
+
'${pascalName}MachineAuthorization',
|
|
448
|
+
{
|
|
449
|
+
parameters: {
|
|
450
|
+
ClientName: machineClientName($app.stage, credentialGeneration),
|
|
451
|
+
CredentialGeneration: credentialGeneration,
|
|
452
|
+
ProvisionerFunctionArn: options.provisionerFunctionArn,
|
|
453
|
+
ResourceServerIdentifier: resourceServerIdentifier,
|
|
454
|
+
RetirePreviousGeneration:
|
|
455
|
+
options.retirePreviousGeneration === true ? 'true' : 'false',
|
|
456
|
+
SecretName:
|
|
457
|
+
'ebk/' +
|
|
458
|
+
$app.stage +
|
|
459
|
+
'/${name}/authorization/machine-client',
|
|
460
|
+
UserPoolId: options.userPoolId,
|
|
461
|
+
},
|
|
462
|
+
templateBody: JSON.stringify(template),
|
|
463
|
+
},
|
|
464
|
+
);
|
|
465
|
+
const acceptedClientIdsJson = requiredStackOutput(
|
|
466
|
+
stack,
|
|
467
|
+
'AcceptedClientIdsJson',
|
|
468
|
+
);
|
|
469
|
+
const adminGroupName = requiredStackOutput(stack, 'AdminGroupName');
|
|
470
|
+
const clientId = requiredStackOutput(stack, 'ClientId');
|
|
471
|
+
const identifier = requiredStackOutput(
|
|
472
|
+
stack,
|
|
473
|
+
'ResourceServerIdentifier',
|
|
474
|
+
);
|
|
475
|
+
const secretArn = requiredStackOutput(stack, 'SecretArn');
|
|
476
|
+
const testWriterGroupName = requiredStackOutput(
|
|
477
|
+
stack,
|
|
478
|
+
'TestWriterGroupName',
|
|
479
|
+
);
|
|
480
|
+
const scopes = {
|
|
481
|
+
delegationUse: identifier.apply(
|
|
482
|
+
(value: string) => value + '/delegation-use',
|
|
483
|
+
),
|
|
484
|
+
proofRead: identifier.apply(
|
|
485
|
+
(value: string) => value + '/proof-read',
|
|
486
|
+
),
|
|
487
|
+
};
|
|
488
|
+
return {
|
|
489
|
+
acceptedClientIdsJson,
|
|
490
|
+
adminGroupName,
|
|
491
|
+
clientId,
|
|
492
|
+
credentialGeneration,
|
|
493
|
+
resourceServerIdentifier: identifier,
|
|
494
|
+
scopes,
|
|
495
|
+
proof: {
|
|
496
|
+
environment: {
|
|
497
|
+
AUTH_MACHINE_CLIENT_ID: clientId,
|
|
498
|
+
AUTH_MACHINE_CLIENT_SECRET_ARN: secretArn,
|
|
499
|
+
AUTH_MACHINE_PROOF_SCOPE: scopes.proofRead,
|
|
500
|
+
AUTH_MACHINE_RESOURCE_SERVER: identifier,
|
|
501
|
+
AUTH_MACHINE_TOKEN_ENDPOINT: options.tokenEndpoint,
|
|
502
|
+
},
|
|
503
|
+
permissions: [
|
|
504
|
+
{
|
|
505
|
+
actions: ['secretsmanager:GetSecretValue'],
|
|
506
|
+
resources: [secretArn],
|
|
507
|
+
},
|
|
508
|
+
],
|
|
509
|
+
},
|
|
510
|
+
secretArn,
|
|
511
|
+
testWriterGroupName,
|
|
512
|
+
tokenEndpoint: options.tokenEndpoint,
|
|
513
|
+
};
|
|
514
|
+
}
|
|
515
|
+
`,
|
|
516
|
+
'docs/runbooks/rotate-machine-authorization.md': `# Rotate machine authorization credentials
|
|
517
|
+
|
|
518
|
+
The Standard Slice creates its Cognito client secret inside AWS and writes it
|
|
519
|
+
directly to the generated Secrets Manager container. Do not retrieve, copy,
|
|
520
|
+
print, or pass the client secret to SST, Pulumi, GitHub, an agent, or a command
|
|
521
|
+
line.
|
|
522
|
+
|
|
523
|
+
## Begin an overlap
|
|
524
|
+
|
|
525
|
+
1. Read the current non-secret generation from the protected deployment
|
|
526
|
+
configuration.
|
|
527
|
+
2. Select the other slot and a new positive generation number, for example
|
|
528
|
+
\`blue-1\` to \`green-2\`.
|
|
529
|
+
3. Set \`EBK_MACHINE_CREDENTIAL_GENERATION\` to that generation and leave
|
|
530
|
+
\`EBK_MACHINE_RETIRE_PREVIOUS_GENERATION\` unset.
|
|
531
|
+
4. Deploy through the Slice's Nx \`deploy\` target. The AWS-internal
|
|
532
|
+
provisioner creates the replacement client and moves its credential to
|
|
533
|
+
\`AWSCURRENT\`; the former credential remains \`AWSPREVIOUS\` and its Cognito
|
|
534
|
+
client remains valid during the overlap.
|
|
535
|
+
5. Prove the server-side token-minting journey reads \`AWSCURRENT\`, obtains a
|
|
536
|
+
bounded access token, and completes its narrow capability smoke. Evidence
|
|
537
|
+
may contain the client ID, generation, scope names, and outcome, but never a
|
|
538
|
+
secret or access token.
|
|
539
|
+
|
|
540
|
+
## Retire the previous generation
|
|
541
|
+
|
|
542
|
+
Only after the new generation is proved, set
|
|
543
|
+
\`EBK_MACHINE_RETIRE_PREVIOUS_GENERATION=true\` and deploy the same generation
|
|
544
|
+
again through Nx. The AWS-internal provisioner deletes the previous Cognito
|
|
545
|
+
client and removes its \`AWSPREVIOUS\` label without returning either
|
|
546
|
+
credential. Clear the retirement flag after the successful deploy.
|
|
547
|
+
|
|
548
|
+
If the replacement cannot mint and use a token, restore the prior deployment
|
|
549
|
+
configuration before retirement. The provisioner recognizes that exact
|
|
550
|
+
\`AWSPREVIOUS\` generation, atomically promotes it back to \`AWSCURRENT\`, and
|
|
551
|
+
keeps the failed replacement as the new rollback generation. Prove the restored
|
|
552
|
+
generation before retiring anything. Never retire in the same deployment that
|
|
553
|
+
creates a generation, reuse the current color for a new generation, invoke SST
|
|
554
|
+
directly, or use the interactive operator-secret commands for this
|
|
555
|
+
provider-generated credential.
|
|
556
|
+
`,
|
|
557
|
+
};
|
|
558
|
+
}
|
|
559
|
+
//# sourceMappingURL=built-in-plan-authorization-infrastructure-files.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"built-in-plan-authorization-infrastructure-files.js","sourceRoot":"","sources":["../../../../../../packages/nx/src/generators/slice/built-in-plan-authorization-infrastructure-files.ts"],"names":[],"mappings":";;AAkOA,kHA6UC;AA/iBD,MAAM,iCAAiC,GAAG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA+NzC,CAAC;AAEF,gBAAgB;AAChB,SAAgB,mDAAmD,CACjE,IAAY,EACZ,UAAkB;IAElB,OAAO;QACL,6CAA6C,EAC3C,iCAAiC,GAAG,IAAI;QAC1C,wBAAwB,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkCX,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;+HA4BwG,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;sCAkC7F,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;yEAyB+B,IAAI;wBACrD,IAAI;;;;;;;;;wDAS4B,IAAI;wBACpC,IAAI;;;;;;;;;6BASC,IAAI;;;;0CAIS,IAAI;;;;;;;;;mBAS3B,UAAU;;;;iCAII,IAAI;;;;;mCAKF,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAoDhC,UAAU;;;;;;;;;;;;cAYH,IAAI;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwDjB;QACG,+CAA+C,EAAE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwCpD;KACE,CAAC;AACJ,CAAC"}
|