@friggframework/devtools 2.0.0-next.11 → 2.0.0-next.110
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/frigg-cli/README.md +1289 -0
- package/frigg-cli/__tests__/unit/commands/build.test.js +279 -0
- package/frigg-cli/__tests__/unit/commands/db-setup.test.js +649 -0
- package/frigg-cli/__tests__/unit/commands/deploy.test.js +320 -0
- package/frigg-cli/__tests__/unit/commands/doctor.test.js +309 -0
- package/frigg-cli/__tests__/unit/commands/generate-iam.test.js +97 -0
- package/frigg-cli/__tests__/unit/commands/install.test.js +400 -0
- package/frigg-cli/__tests__/unit/commands/ui.test.js +346 -0
- package/frigg-cli/__tests__/unit/dependencies.test.js +74 -0
- package/frigg-cli/__tests__/unit/utils/database-validator.test.js +397 -0
- package/frigg-cli/__tests__/unit/utils/error-messages.test.js +345 -0
- package/frigg-cli/__tests__/unit/version-detection.test.js +171 -0
- package/frigg-cli/__tests__/utils/mock-factory.js +270 -0
- package/frigg-cli/__tests__/utils/prisma-mock.js +194 -0
- package/frigg-cli/__tests__/utils/test-fixtures.js +463 -0
- package/frigg-cli/__tests__/utils/test-setup.js +287 -0
- package/frigg-cli/auth-command/CLAUDE.md +293 -0
- package/frigg-cli/auth-command/README.md +450 -0
- package/frigg-cli/auth-command/api-key-flow.js +153 -0
- package/frigg-cli/auth-command/auth-tester.js +344 -0
- package/frigg-cli/auth-command/credential-storage.js +182 -0
- package/frigg-cli/auth-command/index.js +256 -0
- package/frigg-cli/auth-command/json-schema-form.js +67 -0
- package/frigg-cli/auth-command/module-loader.js +172 -0
- package/frigg-cli/auth-command/oauth-callback-server.js +431 -0
- package/frigg-cli/auth-command/oauth-flow.js +195 -0
- package/frigg-cli/auth-command/utils/browser.js +30 -0
- package/frigg-cli/build-command/index.js +45 -12
- package/frigg-cli/db-setup-command/index.js +246 -0
- package/frigg-cli/deploy-command/SPEC-DEPLOY-DRY-RUN.md +981 -0
- package/frigg-cli/deploy-command/index.js +339 -23
- package/frigg-cli/doctor-command/index.js +335 -0
- package/frigg-cli/generate-command/__tests__/generate-command.test.js +301 -0
- package/frigg-cli/generate-command/azure-generator.js +43 -0
- package/frigg-cli/generate-command/gcp-generator.js +47 -0
- package/frigg-cli/generate-command/index.js +333 -0
- package/frigg-cli/generate-command/terraform-generator.js +555 -0
- package/frigg-cli/generate-iam-command.js +119 -0
- package/frigg-cli/index.js +189 -1
- package/frigg-cli/index.test.js +1 -4
- package/frigg-cli/init-command/backend-first-handler.js +756 -0
- package/frigg-cli/init-command/index.js +93 -0
- package/frigg-cli/init-command/template-handler.js +143 -0
- package/frigg-cli/install-command/index.js +1 -4
- package/frigg-cli/jest.config.js +124 -0
- package/frigg-cli/package.json +63 -0
- package/frigg-cli/repair-command/index.js +564 -0
- package/frigg-cli/ssm-command/index.js +308 -0
- package/frigg-cli/ssm-command/index.test.js +318 -0
- package/frigg-cli/start-command/index.js +118 -5
- package/frigg-cli/start-command/start-command.test.js +297 -0
- package/frigg-cli/test/init-command.test.js +180 -0
- package/frigg-cli/test/npm-registry.test.js +319 -0
- package/frigg-cli/ui-command/index.js +154 -0
- package/frigg-cli/utils/app-resolver.js +319 -0
- package/frigg-cli/utils/backend-path.js +16 -17
- package/frigg-cli/utils/database-validator.js +167 -0
- package/frigg-cli/utils/error-messages.js +329 -0
- package/frigg-cli/utils/npm-registry.js +167 -0
- package/frigg-cli/utils/process-manager.js +199 -0
- package/frigg-cli/utils/repo-detection.js +405 -0
- package/infrastructure/ARCHITECTURE.md +487 -0
- package/infrastructure/CLAUDE.md +481 -0
- package/infrastructure/HEALTH.md +468 -0
- package/infrastructure/README.md +540 -0
- package/infrastructure/__tests__/fixtures/mock-aws-resources.js +391 -0
- package/infrastructure/__tests__/helpers/test-utils.js +275 -0
- package/infrastructure/__tests__/postgres-config.test.js +914 -0
- package/infrastructure/__tests__/scoped-environment.test.js +126 -0
- package/infrastructure/__tests__/ssm-preload-node-options.test.js +79 -0
- package/infrastructure/__tests__/template-generation.test.js +687 -0
- package/infrastructure/create-frigg-infrastructure.js +129 -20
- package/infrastructure/docs/POSTGRES-CONFIGURATION.md +630 -0
- package/infrastructure/docs/PRE-DEPLOYMENT-HEALTH-CHECK-SPEC.md +1317 -0
- package/infrastructure/docs/WEBSOCKET-CONFIGURATION.md +105 -0
- package/infrastructure/docs/deployment-instructions.md +268 -0
- package/infrastructure/docs/generate-iam-command.md +278 -0
- package/infrastructure/docs/iam-policy-templates.md +193 -0
- package/infrastructure/domains/admin-scripts/admin-script-builder.js +567 -0
- package/infrastructure/domains/admin-scripts/admin-script-builder.test.js +1017 -0
- package/infrastructure/domains/admin-scripts/index.js +5 -0
- package/infrastructure/domains/database/aurora-builder.js +857 -0
- package/infrastructure/domains/database/aurora-builder.test.js +960 -0
- package/infrastructure/domains/database/aurora-discovery.js +87 -0
- package/infrastructure/domains/database/aurora-discovery.test.js +188 -0
- package/infrastructure/domains/database/aurora-resolver.js +210 -0
- package/infrastructure/domains/database/aurora-resolver.test.js +347 -0
- package/infrastructure/domains/database/migration-builder.js +757 -0
- package/infrastructure/domains/database/migration-builder.test.js +454 -0
- package/infrastructure/domains/database/migration-resolver.js +163 -0
- package/infrastructure/domains/database/migration-resolver.test.js +337 -0
- package/infrastructure/domains/health/application/ports/IPropertyReconciler.js +164 -0
- package/infrastructure/domains/health/application/ports/IResourceDetector.js +129 -0
- package/infrastructure/domains/health/application/ports/IResourceImporter.js +142 -0
- package/infrastructure/domains/health/application/ports/IStackRepository.js +131 -0
- package/infrastructure/domains/health/application/ports/index.js +26 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/execute-resource-import-use-case.test.js +679 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/mismatch-analyzer-method-name.test.js +167 -0
- package/infrastructure/domains/health/application/use-cases/__tests__/repair-via-import-use-case.test.js +1130 -0
- package/infrastructure/domains/health/application/use-cases/execute-resource-import-use-case.js +221 -0
- package/infrastructure/domains/health/application/use-cases/reconcile-properties-use-case.js +152 -0
- package/infrastructure/domains/health/application/use-cases/reconcile-properties-use-case.test.js +343 -0
- package/infrastructure/domains/health/application/use-cases/repair-via-import-use-case.js +535 -0
- package/infrastructure/domains/health/application/use-cases/repair-via-import-use-case.test.js +376 -0
- package/infrastructure/domains/health/application/use-cases/run-health-check-use-case.js +213 -0
- package/infrastructure/domains/health/application/use-cases/run-health-check-use-case.test.js +441 -0
- package/infrastructure/domains/health/docs/ACME-DEV-DRIFT-ANALYSIS.md +267 -0
- package/infrastructure/domains/health/docs/BUILD-VS-DEPLOYED-TEMPLATE-ANALYSIS.md +324 -0
- package/infrastructure/domains/health/docs/ORPHAN-DETECTION-ANALYSIS.md +386 -0
- package/infrastructure/domains/health/docs/SPEC-CLEANUP-COMMAND.md +1419 -0
- package/infrastructure/domains/health/docs/TDD-IMPLEMENTATION-SUMMARY.md +391 -0
- package/infrastructure/domains/health/docs/TEMPLATE-COMPARISON-IMPLEMENTATION.md +551 -0
- package/infrastructure/domains/health/domain/entities/issue.js +299 -0
- package/infrastructure/domains/health/domain/entities/issue.test.js +528 -0
- package/infrastructure/domains/health/domain/entities/property-mismatch.js +108 -0
- package/infrastructure/domains/health/domain/entities/property-mismatch.test.js +275 -0
- package/infrastructure/domains/health/domain/entities/resource.js +159 -0
- package/infrastructure/domains/health/domain/entities/resource.test.js +432 -0
- package/infrastructure/domains/health/domain/entities/stack-health-report.js +306 -0
- package/infrastructure/domains/health/domain/entities/stack-health-report.test.js +601 -0
- package/infrastructure/domains/health/domain/services/__tests__/health-score-percentage-based.test.js +380 -0
- package/infrastructure/domains/health/domain/services/__tests__/import-progress-monitor.test.js +971 -0
- package/infrastructure/domains/health/domain/services/__tests__/import-template-generator.test.js +1150 -0
- package/infrastructure/domains/health/domain/services/__tests__/logical-id-mapper.test.js +672 -0
- package/infrastructure/domains/health/domain/services/__tests__/template-parser.test.js +496 -0
- package/infrastructure/domains/health/domain/services/__tests__/update-progress-monitor.test.js +419 -0
- package/infrastructure/domains/health/domain/services/health-score-calculator.js +248 -0
- package/infrastructure/domains/health/domain/services/health-score-calculator.test.js +504 -0
- package/infrastructure/domains/health/domain/services/import-progress-monitor.js +195 -0
- package/infrastructure/domains/health/domain/services/import-template-generator.js +435 -0
- package/infrastructure/domains/health/domain/services/logical-id-mapper.js +345 -0
- package/infrastructure/domains/health/domain/services/mismatch-analyzer.js +234 -0
- package/infrastructure/domains/health/domain/services/mismatch-analyzer.test.js +431 -0
- package/infrastructure/domains/health/domain/services/property-mutability-config.js +382 -0
- package/infrastructure/domains/health/domain/services/template-parser.js +245 -0
- package/infrastructure/domains/health/domain/services/update-progress-monitor.js +192 -0
- package/infrastructure/domains/health/domain/value-objects/health-score.js +138 -0
- package/infrastructure/domains/health/domain/value-objects/health-score.test.js +267 -0
- package/infrastructure/domains/health/domain/value-objects/property-mutability.js +161 -0
- package/infrastructure/domains/health/domain/value-objects/property-mutability.test.js +198 -0
- package/infrastructure/domains/health/domain/value-objects/resource-state.js +167 -0
- package/infrastructure/domains/health/domain/value-objects/resource-state.test.js +196 -0
- package/infrastructure/domains/health/domain/value-objects/stack-identifier.js +192 -0
- package/infrastructure/domains/health/domain/value-objects/stack-identifier.test.js +262 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-cfn-tagged.test.js +312 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-multi-stack.test.js +367 -0
- package/infrastructure/domains/health/infrastructure/adapters/__tests__/orphan-detection-relationship-analysis.test.js +432 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-property-reconciler.js +784 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-property-reconciler.test.js +1133 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-detector.js +565 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-detector.test.js +554 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-importer.js +318 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-resource-importer.test.js +398 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-stack-repository.js +777 -0
- package/infrastructure/domains/health/infrastructure/adapters/aws-stack-repository.test.js +580 -0
- package/infrastructure/domains/integration/integration-builder.js +656 -0
- package/infrastructure/domains/integration/integration-builder.test.js +1064 -0
- package/infrastructure/domains/integration/integration-resolver.js +170 -0
- package/infrastructure/domains/integration/integration-resolver.test.js +369 -0
- package/infrastructure/domains/integration/websocket-builder.js +69 -0
- package/infrastructure/domains/integration/websocket-builder.test.js +195 -0
- package/infrastructure/domains/networking/vpc-builder.js +2101 -0
- package/infrastructure/domains/networking/vpc-builder.test.js +2001 -0
- package/infrastructure/domains/networking/vpc-discovery.js +184 -0
- package/infrastructure/domains/networking/vpc-discovery.test.js +368 -0
- package/infrastructure/domains/networking/vpc-resolver.js +514 -0
- package/infrastructure/domains/networking/vpc-resolver.test.js +841 -0
- package/infrastructure/domains/parameters/offload-utils.js +190 -0
- package/infrastructure/domains/parameters/offload-utils.test.js +193 -0
- package/infrastructure/domains/parameters/ssm-builder.js +132 -0
- package/infrastructure/domains/parameters/ssm-builder.test.js +346 -0
- package/infrastructure/domains/parameters/ssm-discovery.js +84 -0
- package/infrastructure/domains/parameters/ssm-discovery.test.js +210 -0
- package/infrastructure/domains/scheduler/scheduler-builder.js +247 -0
- package/infrastructure/domains/scheduler/scheduler-builder.test.js +118 -0
- package/infrastructure/domains/security/iam-generator.js +851 -0
- package/infrastructure/domains/security/iam-generator.test.js +287 -0
- package/infrastructure/domains/security/kms-builder.js +415 -0
- package/infrastructure/domains/security/kms-builder.test.js +392 -0
- package/infrastructure/domains/security/kms-discovery.js +80 -0
- package/infrastructure/domains/security/kms-discovery.test.js +177 -0
- package/infrastructure/domains/security/kms-resolver.js +96 -0
- package/infrastructure/domains/security/kms-resolver.test.js +216 -0
- package/infrastructure/domains/security/templates/frigg-deployment-iam-stack.yaml +418 -0
- package/infrastructure/domains/security/templates/iam-policy-basic.json +218 -0
- package/infrastructure/domains/security/templates/iam-policy-full.json +293 -0
- package/infrastructure/domains/shared/base-builder.js +112 -0
- package/infrastructure/domains/shared/base-resolver.js +186 -0
- package/infrastructure/domains/shared/base-resolver.test.js +305 -0
- package/infrastructure/domains/shared/builder-orchestrator.js +226 -0
- package/infrastructure/domains/shared/builder-orchestrator.test.js +258 -0
- package/infrastructure/domains/shared/cloudformation-discovery-v2.js +334 -0
- package/infrastructure/domains/shared/cloudformation-discovery.js +681 -0
- package/infrastructure/domains/shared/cloudformation-discovery.test.js +1320 -0
- package/infrastructure/domains/shared/environment-builder.js +192 -0
- package/infrastructure/domains/shared/environment-builder.test.js +529 -0
- package/infrastructure/domains/shared/function-environments.js +97 -0
- package/infrastructure/domains/shared/function-environments.test.js +146 -0
- package/infrastructure/domains/shared/providers/aws-provider-adapter.js +579 -0
- package/infrastructure/domains/shared/providers/aws-provider-adapter.test.js +416 -0
- package/infrastructure/domains/shared/providers/azure-provider-adapter.stub.js +93 -0
- package/infrastructure/domains/shared/providers/cloud-provider-adapter.js +136 -0
- package/infrastructure/domains/shared/providers/gcp-provider-adapter.stub.js +82 -0
- package/infrastructure/domains/shared/providers/provider-factory.js +108 -0
- package/infrastructure/domains/shared/providers/provider-factory.test.js +170 -0
- package/infrastructure/domains/shared/resource-discovery.enhanced.test.js +306 -0
- package/infrastructure/domains/shared/resource-discovery.js +256 -0
- package/infrastructure/domains/shared/resource-discovery.test.js +757 -0
- package/infrastructure/domains/shared/types/app-definition.js +225 -0
- package/infrastructure/domains/shared/types/discovery-result.js +106 -0
- package/infrastructure/domains/shared/types/discovery-result.test.js +258 -0
- package/infrastructure/domains/shared/types/index.js +46 -0
- package/infrastructure/domains/shared/types/resource-ownership.js +108 -0
- package/infrastructure/domains/shared/types/resource-ownership.test.js +101 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.js +409 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.js.bak +338 -0
- package/infrastructure/domains/shared/utilities/base-definition-factory.test.js +319 -0
- package/infrastructure/domains/shared/utilities/handler-path-resolver.js +134 -0
- package/infrastructure/domains/shared/utilities/handler-path-resolver.test.js +268 -0
- package/infrastructure/domains/shared/utilities/nested-node-modules.js +53 -0
- package/infrastructure/domains/shared/utilities/nested-node-modules.test.js +61 -0
- package/infrastructure/domains/shared/utilities/prisma-layer-manager.js +159 -0
- package/infrastructure/domains/shared/utilities/prisma-layer-manager.test.js +444 -0
- package/infrastructure/domains/shared/validation/env-validator.js +78 -0
- package/infrastructure/domains/shared/validation/env-validator.test.js +173 -0
- package/infrastructure/domains/shared/validation/plugin-validator.js +187 -0
- package/infrastructure/domains/shared/validation/plugin-validator.test.js +323 -0
- package/infrastructure/esbuild.config.js +53 -0
- package/infrastructure/infrastructure-composer.js +168 -0
- package/infrastructure/infrastructure-composer.test.js +2042 -0
- package/infrastructure/integration.test.js +381 -0
- package/infrastructure/scripts/build-prisma-layer.js +701 -0
- package/infrastructure/scripts/build-prisma-layer.test.js +170 -0
- package/infrastructure/scripts/build-time-discovery.js +238 -0
- package/infrastructure/scripts/build-time-discovery.test.js +379 -0
- package/infrastructure/scripts/run-discovery.js +110 -0
- package/infrastructure/scripts/verify-prisma-layer.js +72 -0
- package/management-ui/README.md +203 -0
- package/package.json +48 -16
- package/test/index.js +2 -4
- package/test/mock-api.js +1 -3
- package/test/mock-integration.js +4 -14
- package/.eslintrc.json +0 -3
- package/CHANGELOG.md +0 -132
- package/infrastructure/serverless-template.js +0 -283
- package/infrastructure/webpack.config.js +0 -20
- package/test/auther-definition-tester.js +0 -125
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Environment Builder Service
|
|
3
|
+
*
|
|
4
|
+
* Domain Service - Hexagonal Architecture
|
|
5
|
+
*
|
|
6
|
+
* Builds Lambda environment variable configuration from:
|
|
7
|
+
* 1. AppDefinition environment flags
|
|
8
|
+
* 2. Discovered AWS resources (VPC IDs, KMS keys, etc.)
|
|
9
|
+
* 3. Generated resource references
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
const {
|
|
13
|
+
isSsmOffloadActive,
|
|
14
|
+
getOffloadedKeys,
|
|
15
|
+
} = require('../parameters/offload-utils');
|
|
16
|
+
|
|
17
|
+
// OTLP-family exporters read their endpoint/headers from these standard env
|
|
18
|
+
// vars (ADR-011). When such an exporter is configured we auto-register them as
|
|
19
|
+
// Serverless passthroughs so the deployed Lambda inherits them from the deploy
|
|
20
|
+
// environment — no need for the adopter to also list them under `environment`.
|
|
21
|
+
//
|
|
22
|
+
// NOTE (VPC egress): a Lambda in a private subnet needs a NAT gateway or a VPC
|
|
23
|
+
// endpoint to reach an external OTLP backend (Honeycomb/Datadog). Without egress
|
|
24
|
+
// the exporter fails silently within its flush timeout — see the deploy docs.
|
|
25
|
+
const OTLP_EXPORTER_TYPES = new Set(['otlp', 'honeycomb', 'datadog']);
|
|
26
|
+
const OTEL_PASSTHROUGH_VARS = [
|
|
27
|
+
'OTEL_EXPORTER_OTLP_ENDPOINT',
|
|
28
|
+
'OTEL_EXPORTER_OTLP_HEADERS',
|
|
29
|
+
];
|
|
30
|
+
|
|
31
|
+
function addTelemetryEnvPassthrough(appDefinition, envVars) {
|
|
32
|
+
const exporterType = appDefinition?.telemetry?.exporter?.type;
|
|
33
|
+
if (!OTLP_EXPORTER_TYPES.has(exporterType)) return;
|
|
34
|
+
|
|
35
|
+
// Skip offloaded keys here: baking '${env:KEY, ''}' resolves to '' at
|
|
36
|
+
// deploy (the value lives only in SSM), and '' !== undefined then blocks
|
|
37
|
+
// the SSM loader from ever fetching the real value.
|
|
38
|
+
const offloadedKeys = isSsmOffloadActive(appDefinition)
|
|
39
|
+
? new Set(getOffloadedKeys(appDefinition))
|
|
40
|
+
: null;
|
|
41
|
+
for (const key of OTEL_PASSTHROUGH_VARS) {
|
|
42
|
+
if (offloadedKeys?.has(key)) continue;
|
|
43
|
+
envVars[key] = `\${env:${key}, ''}`;
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* Get environment variables from AppDefinition
|
|
49
|
+
*
|
|
50
|
+
* Extracts environment variable definitions where value is true,
|
|
51
|
+
* and creates Serverless variable references.
|
|
52
|
+
*
|
|
53
|
+
* A value of 'ssm' offloads the variable to Parameter Store when offload is
|
|
54
|
+
* active (see SsmBuilder), keeping it out of the Lambda env map. When offload
|
|
55
|
+
* is not active (local mode / ssm disabled) it falls back to the same
|
|
56
|
+
* `${env:KEY, ''}` reference as `true` so `frigg start` + dotenv keeps working.
|
|
57
|
+
*
|
|
58
|
+
* @param {Object} appDefinition - Application definition
|
|
59
|
+
* @returns {Object} Environment variable mappings
|
|
60
|
+
*/
|
|
61
|
+
function getAppEnvironmentVars(appDefinition) {
|
|
62
|
+
const envVars = {};
|
|
63
|
+
const reservedVars = new Set([
|
|
64
|
+
'_HANDLER',
|
|
65
|
+
'_X_AMZN_TRACE_ID',
|
|
66
|
+
'AWS_DEFAULT_REGION',
|
|
67
|
+
'AWS_EXECUTION_ENV',
|
|
68
|
+
'AWS_REGION',
|
|
69
|
+
'AWS_LAMBDA_FUNCTION_NAME',
|
|
70
|
+
'AWS_LAMBDA_FUNCTION_MEMORY_SIZE',
|
|
71
|
+
'AWS_LAMBDA_FUNCTION_VERSION',
|
|
72
|
+
'AWS_LAMBDA_INITIALIZATION_TYPE',
|
|
73
|
+
'AWS_LAMBDA_LOG_GROUP_NAME',
|
|
74
|
+
'AWS_LAMBDA_LOG_STREAM_NAME',
|
|
75
|
+
'AWS_ACCESS_KEY',
|
|
76
|
+
'AWS_ACCESS_KEY_ID',
|
|
77
|
+
'AWS_SECRET_ACCESS_KEY',
|
|
78
|
+
'AWS_SESSION_TOKEN',
|
|
79
|
+
]);
|
|
80
|
+
|
|
81
|
+
addTelemetryEnvPassthrough(appDefinition, envVars);
|
|
82
|
+
|
|
83
|
+
const environment = appDefinition.environment || {};
|
|
84
|
+
|
|
85
|
+
console.log('📋 Loading environment variables from appDefinition...');
|
|
86
|
+
const envKeys = [];
|
|
87
|
+
const skippedKeys = [];
|
|
88
|
+
const offloadedKeys = [];
|
|
89
|
+
const offloadActive = isSsmOffloadActive(appDefinition);
|
|
90
|
+
|
|
91
|
+
for (const [key, value] of Object.entries(environment)) {
|
|
92
|
+
if (value === 'ssm' && offloadActive) {
|
|
93
|
+
offloadedKeys.push(key);
|
|
94
|
+
continue;
|
|
95
|
+
}
|
|
96
|
+
if (value !== true && value !== 'ssm') continue;
|
|
97
|
+
if (reservedVars.has(key)) {
|
|
98
|
+
skippedKeys.push(key);
|
|
99
|
+
continue;
|
|
100
|
+
}
|
|
101
|
+
envVars[key] = `\${env:${key}, ''}`;
|
|
102
|
+
envKeys.push(key);
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
// Keys declared only in ssm.parameters (no matching `environment` entry)
|
|
106
|
+
// get the same local-fallback treatment as `environment`-valued 'ssm' keys.
|
|
107
|
+
const ssmOnlyKeys = getOffloadedKeys(appDefinition).filter(
|
|
108
|
+
(key) => !(key in environment)
|
|
109
|
+
);
|
|
110
|
+
for (const key of ssmOnlyKeys) {
|
|
111
|
+
if (offloadActive) {
|
|
112
|
+
offloadedKeys.push(key);
|
|
113
|
+
continue;
|
|
114
|
+
}
|
|
115
|
+
if (reservedVars.has(key)) {
|
|
116
|
+
skippedKeys.push(key);
|
|
117
|
+
continue;
|
|
118
|
+
}
|
|
119
|
+
envVars[key] = `\${env:${key}, ''}`;
|
|
120
|
+
envKeys.push(key);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
if (envKeys.length > 0) {
|
|
124
|
+
console.log(
|
|
125
|
+
` Found ${envKeys.length} environment variables: ${envKeys.join(
|
|
126
|
+
', '
|
|
127
|
+
)}`
|
|
128
|
+
);
|
|
129
|
+
}
|
|
130
|
+
if (skippedKeys.length > 0) {
|
|
131
|
+
console.log(
|
|
132
|
+
` ⚠️ Skipped ${
|
|
133
|
+
skippedKeys.length
|
|
134
|
+
} reserved AWS Lambda variables: ${skippedKeys.join(', ')}`
|
|
135
|
+
);
|
|
136
|
+
}
|
|
137
|
+
if (offloadedKeys.length > 0) {
|
|
138
|
+
console.log(
|
|
139
|
+
` 🔒 Offloaded ${
|
|
140
|
+
offloadedKeys.length
|
|
141
|
+
} variables to SSM: ${offloadedKeys.join(', ')}`
|
|
142
|
+
);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
return envVars;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Build complete environment configuration for Lambda functions
|
|
150
|
+
*
|
|
151
|
+
* Combines app environment vars with discovered AWS resource references
|
|
152
|
+
*
|
|
153
|
+
* @param {Object} appEnvironmentVars - Environment vars from AppDefinition
|
|
154
|
+
* @param {Object} discoveredResources - Discovered AWS resources
|
|
155
|
+
* @returns {Object} Complete environment configuration
|
|
156
|
+
*/
|
|
157
|
+
function buildEnvironment(appEnvironmentVars, discoveredResources) {
|
|
158
|
+
const environment = {
|
|
159
|
+
...appEnvironmentVars,
|
|
160
|
+
STAGE: '${self:provider.stage}', // Used by encryption bypass logic
|
|
161
|
+
FRIGG_STACK: '${self:service}',
|
|
162
|
+
FRIGG_STAGE: '${self:provider.stage}',
|
|
163
|
+
FRIGG_REGION: '${self:provider.region}',
|
|
164
|
+
};
|
|
165
|
+
|
|
166
|
+
// Add KMS key if discovered or created
|
|
167
|
+
if (discoveredResources.kmsKeyId) {
|
|
168
|
+
environment.KMS_KEY_ARN = discoveredResources.kmsKeyId;
|
|
169
|
+
} else if (discoveredResources.kmsKeyArn) {
|
|
170
|
+
environment.KMS_KEY_ARN = discoveredResources.kmsKeyArn;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
// Add database connection info if discovered
|
|
174
|
+
if (discoveredResources.auroraClusterEndpoint) {
|
|
175
|
+
environment.DATABASE_HOST = discoveredResources.auroraClusterEndpoint;
|
|
176
|
+
environment.DATABASE_PORT = String(
|
|
177
|
+
discoveredResources.auroraPort || 5432
|
|
178
|
+
);
|
|
179
|
+
}
|
|
180
|
+
|
|
181
|
+
// Add secrets manager secret ARN if discovered
|
|
182
|
+
if (discoveredResources.databaseSecretArn) {
|
|
183
|
+
environment.DATABASE_SECRET_ARN = discoveredResources.databaseSecretArn;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
return environment;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
module.exports = {
|
|
190
|
+
getAppEnvironmentVars,
|
|
191
|
+
buildEnvironment,
|
|
192
|
+
};
|