Add PKI acme license feature flag

This commit is contained in:
Fang-Pen Lin
2025-11-10 16:23:11 -08:00
parent 3f68ec8016
commit e4a38e4ba8
2 changed files with 2 additions and 0 deletions

View File

@@ -56,6 +56,7 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({
secretsLimit: 40
},
pkiEst: false,
pkiAcme: false,
enforceMfa: false,
projectTemplates: false,
kmip: false,

View File

@@ -78,6 +78,7 @@ export type TFeatureSet = {
secretsLimit: number;
};
pkiEst: boolean;
pkiAcme: boolean;
enforceMfa: boolean;
projectTemplates: false;
kmip: false;