- Bun workspaces (packages/* + bootstrap); Pulumi nodejs runtime under
packagemanager: bun (no npm fallback needed).
- bootstrap/config.ts: typed FoundationConfig per CONTRACT_001; loadConfig()
fails closed, aggregating all missing+malformed keys in one error. Reads flat
dotted keys; image digests excluded (they live in VERSIONS, D5).
- bootstrap/Pulumi.foundation.yaml: non-secret placeholders only (RFC-5737 vm.host,
.invalid offsite); no encryptionsalt/secrets committed (D2). pulumi preview = 0
resources under the passphrase provider via gitignored file:// state backend.
- Stage-1 vendoring: packages/pulumi-{docker,vault} as @olsitec/* (source-only,
logic unchanged). vault's 5 type-only imports from modules/olsitec re-homed
verbatim into pulumi-vault/olsitec-types.ts to keep the egg self-contained.
Realizes PLAN-002 §10 T02; ADR-005 / 000_TOPOLOGY.md §5 Stage-1.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
16 lines
465 B
JSON
16 lines
465 B
JSON
{
|
|
"name": "@olsitec/foundation-bootstrap",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"main": "index.ts",
|
|
"description": "The foundation egg — single Pulumi project (PLAN-002 §0, Layer 0).",
|
|
"dependencies": {
|
|
"@olsitec/pulumi-docker": "workspace:*",
|
|
"@olsitec/pulumi-vault": "workspace:*",
|
|
"@pulumi/pulumi": "^3.138.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18",
|
|
"typescript": "^5.0.0"
|
|
}
|
|
}
|