mirror of
https://github.com/dadosfera/maestro.git
synced 2026-08-31 19:58:21 +00:00
- Change TLS check from ENV !== 'local' to REDIS_TLS === 'true' - Add REDIS_TLS env var to Helm deployment template - Default to true for OCI Redis, can override for self-hosted K8s 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
488 B
TypeScript
24 lines
488 B
TypeScript
declare global {
|
|
namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NODE_ENV: 'test';
|
|
ENV: 'local' | 'stg' | 'prd' | 'test';
|
|
LOCAL_ENV: 'stg' | 'prd';
|
|
|
|
DUC_URL: string;
|
|
INFACTORY_URL: string;
|
|
PIFACTORY_URL: string;
|
|
|
|
INTERNAL_SWAGGER: 'true' | 'false';
|
|
|
|
AWS_REGION: string;
|
|
OPEN_GROUP_ID: string;
|
|
OPEN_CUSTOMER_ID: string;
|
|
DEDICATED_PROXY: string;
|
|
COOKIE_SECRET: string;
|
|
REDIS_TLS?: string;
|
|
}
|
|
}
|
|
}
|
|
export {};
|