secrets
secrets: {
aws?: {
accessKeyId: string;
defaultRegion: string;
dynamoStage: string;
secretAccessKey: string;
};
cloudfront?: {
privateKey: string;
publicKey: string;
};
connectFirst?: {
password: string;
};
django?: {
adminUrl: string;
mandrill: { apiKey: string; };
secretKey: string;
};
jwt?: {
privateKey: string;
publicKey: string;
};
langchain?: {
apiKey?: string;
};
postgres?: { dbname: string; host?: string | undefined; password?: string | undefined; user?: string | undefined; port?: string | undefined; hostReplica?: string | undefined; };
redis?: {
host: string;
hostReplicas: string[];
};
saml?: {
awsProvider: string;
awsRole: string;
};
stripe?: {
apiKey: string;
};
zendesk?: {
apiKey: string;
};
} & {
[k: string]: unknown;
} = ...
Type declaration
-
Optional
aws?: {
accessKeyId: string;
defaultRegion: string;
dynamoStage: string;
secretAccessKey: string;
}
-
accessKeyId: string
-
defaultRegion: string
-
dynamoStage: string
-
secretAccessKey: string
-
Optional
cloudfront?: {
privateKey: string;
publicKey: string;
}
-
privateKey: string
-
publicKey: string
-
Optional
connectFirst?: {
password: string;
}
-
Optional
django?: {
adminUrl: string;
mandrill: { apiKey: string; };
secretKey: string;
}
-
adminUrl: string
-
mandrill: { apiKey: string; }
-
secretKey: string
-
Optional
jwt?: {
privateKey: string;
publicKey: string;
}
-
privateKey: string
-
publicKey: string
-
Optional
langchain?: {
apiKey?: string;
}
-
Optional
postgres?: { dbname: string; host?: string | undefined; password?: string | undefined; user?: string | undefined; port?: string | undefined; hostReplica?: string | undefined; }
-
Optional
redis?: {
host: string;
hostReplicas: string[];
}
-
host: string
-
hostReplicas: string[]
-
Optional
saml?: {
awsProvider: string;
awsRole: string;
}
-
awsProvider: string
-
awsRole: string
-
Optional
stripe?: {
apiKey: string;
}
-
Optional
zendesk?: {
apiKey: string;
}