diff --git a/backend/src/ee/services/license/license-fns.ts b/backend/src/ee/services/license/license-fns.ts index 2a3cf82cc..5da5d0c6c 100644 --- a/backend/src/ee/services/license/license-fns.ts +++ b/backend/src/ee/services/license/license-fns.ts @@ -23,29 +23,29 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({ identitiesUsed: 0, dynamicSecret: false, secretVersioning: true, - pitRecovery: false, + pitRecovery: true, ipAllowlisting: false, - rbac: false, + rbac: true, githubOrgSync: false, customRateLimits: false, customAlerts: false, secretAccessInsights: false, - auditLogs: false, - auditLogsRetentionDays: 0, + auditLogs: true, + auditLogsRetentionDays: 30, auditLogStreams: false, auditLogStreamLimit: 3, - samlSSO: false, + samlSSO: true, enforceGoogleSSO: false, hsm: false, - oidcSSO: false, - scim: false, - ldap: false, - groups: false, + oidcSSO: true, + scim: true, + ldap: true, + groups: true, status: null, trial_end: null, has_used_trial: true, - secretApproval: false, - secretRotation: false, + secretApproval: true, + secretRotation: true, caCrl: false, instanceUserManagement: false, externalKms: false, @@ -57,17 +57,17 @@ export const getDefaultOnPremFeatures = (): TFeatureSet => ({ pkiEst: false, enforceMfa: false, projectTemplates: false, - kmip: false, - gateway: false, - sshHostGroups: false, - secretScanning: false, + kmip: true, + gateway: true, + sshHostGroups: true, + secretScanning: true, enterpriseSecretSyncs: false, enterpriseCertificateSyncs: false, enterpriseAppConnections: false, fips: false, - eventSubscriptions: false, - machineIdentityAuthTemplates: false, - pam: false + eventSubscriptions: true, + machineIdentityAuthTemplates: true, + pam: true }); export const setupLicenseRequestWithStore = ( diff --git a/frontend/src/components/app-connections/AppConnectionOption.tsx b/frontend/src/components/app-connections/AppConnectionOption.tsx index 30a37425c..cce6d2d37 100644 --- a/frontend/src/components/app-connections/AppConnectionOption.tsx +++ b/frontend/src/components/app-connections/AppConnectionOption.tsx @@ -17,7 +17,7 @@ export const AppConnectionOption = ({
{isCreateOption ? ( -
+
Create New Connection
@@ -26,8 +26,8 @@ export const AppConnectionOption = ({

{children}

{!props.data.projectId && ( -
- +
+ Organization @@ -35,7 +35,7 @@ export const AppConnectionOption = ({ )} {isSelected && ( - + )} )} diff --git a/frontend/src/components/auth/CodeInputStep.tsx b/frontend/src/components/auth/CodeInputStep.tsx index 297a9f883..c11b8ca47 100644 --- a/frontend/src/components/auth/CodeInputStep.tsx +++ b/frontend/src/components/auth/CodeInputStep.tsx @@ -90,8 +90,8 @@ export default function CodeInputStep({ return (
-

{t("signup.step2-message")}

-

{email}

+

{t("signup.step2-message")}

+

{email}

@@ -111,11 +111,11 @@ export default function CodeInputStep({ fields={6} onChange={setCode} {...propsPhone} - className="mt-2 mb-2" + className="mb-2 mt-2" />
{codeError && } -
+
-

{t("signup.step2-spam-alert")}

+

{t("signup.step2-spam-alert")}

); diff --git a/frontend/src/components/auth/EnterEmailStep.tsx b/frontend/src/components/auth/EnterEmailStep.tsx index 01b7006d3..809114dea 100644 --- a/frontend/src/components/auth/EnterEmailStep.tsx +++ b/frontend/src/components/auth/EnterEmailStep.tsx @@ -55,7 +55,7 @@ export default function EnterEmailStep({ return (
-

+

{t("signup.step1-start")}

@@ -68,12 +68,12 @@ export default function EnterEmailStep({ className="h-12" /> {emailError && ( -

+

Please enter a valid email.

)}
-
+
-
+
diff --git a/frontend/src/components/auth/InitialSignupStep.tsx b/frontend/src/components/auth/InitialSignupStep.tsx index 91a597f07..f86243052 100644 --- a/frontend/src/components/auth/InitialSignupStep.tsx +++ b/frontend/src/components/auth/InitialSignupStep.tsx @@ -23,7 +23,7 @@ export default function InitialSignupStep({ return (
-

+

{t("signup.initial-title")}

@@ -90,12 +90,12 @@ export default function InitialSignupStep({
)} -
+
{t("signup.create-policy")}
-
+
- + {t("signup.already-have-account")} diff --git a/frontend/src/components/auth/Mfa.tsx b/frontend/src/components/auth/Mfa.tsx index 4577f4ece..cc77c0a02 100644 --- a/frontend/src/components/auth/Mfa.tsx +++ b/frontend/src/components/auth/Mfa.tsx @@ -159,7 +159,7 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop
Your organization requires mobile authentication to be configured.
-
+
{ @@ -173,7 +173,7 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop } return ( -
+
{!hideLogo && (
@@ -183,14 +183,14 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop )} {method === MfaMethod.EMAIL && ( <> -

{t("mfa.step2-message")}

-

{email}

+

{t("mfa.step2-message")}

+

{email}

)} {method === MfaMethod.TOTP && (
-

Two-Factor Authentication

-

+

Two-Factor Authentication

+

{showRecoveryCodeInput ? "Enter one of your backup recovery codes" : "Enter the verification code from your authenticator app"} @@ -207,13 +207,13 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop type="text" fields={6} onChange={setMfaCode} - className="mt-6 mb-2" + className="mb-2 mt-6" {...codeInputProps} />

)} {method === MfaMethod.TOTP && ( -
+
)} {method === MfaMethod.TOTP && ( -
+
{showRecoveryCodeInput ? "Use authenticator code" : "Use a recovery code"} @@ -311,7 +311,7 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop
} > - + Lost your recovery codes? @@ -322,9 +322,9 @@ export const Mfa = ({ successCallback, closeMfa, hideLogo, email, method }: Prop
{t("signup.step2-resend-alert")} -
+
-

{t("signup.step2-spam-alert")}

+

{t("signup.step2-spam-alert")}

)}
diff --git a/frontend/src/components/auth/TeamInviteStep.tsx b/frontend/src/components/auth/TeamInviteStep.tsx index ccb1e6f57..7a108a41a 100644 --- a/frontend/src/components/auth/TeamInviteStep.tsx +++ b/frontend/src/components/auth/TeamInviteStep.tsx @@ -41,26 +41,26 @@ export default function TeamInviteStep(): JSX.Element { }; return ( -
-

+

+

{t("signup.step5-invite-team")}

-

+

{t("signup.step5-subtitle")}

-
+
-
+
Emails