Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -738,6 +738,12 @@ const FeaturesComparison: React.FC<{ plans: PricingPlanFeatures[] }> = ({
plans={plans}
property="sso"
/>
<FeatureComparisonBooleanRow
title="SOC 2 compliance"
description="Ensure the security of your data with our SOC 2 Type II compliance."
plans={plans}
property="soc2"
/>

<FeatureComparisonBooleanRow
title="Private cloud"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export type PricingPlanFeatures = {
apiAccess: boolean;
protectedPreviews: boolean;
sso: boolean;
soc2: boolean;
privateCloud: boolean;
onPremise: boolean;
instantEnvironmentResume: boolean;
Expand All @@ -42,6 +43,7 @@ export const FREE_FEATURES: PricingPlanFeatures = {
apiAccess: true,
protectedPreviews: false,
sso: false,
soc2: true,
privateCloud: false,
onPremise: false,
instantEnvironmentResume: true,
Expand All @@ -67,6 +69,7 @@ export const PRO_FEATURES: PricingPlanFeatures = {
apiAccess: true,
protectedPreviews: false,
sso: false,
soc2: true,
privateCloud: false,
onPremise: false,
instantEnvironmentResume: true,
Expand All @@ -91,6 +94,7 @@ export const ENTERPRISE_FEATURES: PricingPlanFeatures = {
apiAccess: true,
protectedPreviews: true,
sso: true,
soc2: true,
privateCloud: true,
onPremise: true,
instantEnvironmentResume: true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ export const ENTERPRISE_PLAN: PricingPlan = {
'On-premise options',
'Private managed cloud',
'Dedicated support',
'SOC 2 Type II compliant',
'SSO',
],
};
Expand Down