File tree Expand file tree Collapse file tree 3 files changed +11
-0
lines changed
components/WorkspaceSetup/steps
overmind/namespaces/checkout Expand file tree Collapse file tree 3 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -738,6 +738,12 @@ const FeaturesComparison: React.FC<{ plans: PricingPlanFeatures[] }> = ({
738738 plans = { plans }
739739 property = "sso"
740740 />
741+ < FeatureComparisonBooleanRow
742+ title = "SOC 2 compliance"
743+ description = "Ensure the security of your data with our SOC 2 Type II compliance."
744+ plans = { plans }
745+ property = "soc2"
746+ />
741747
742748 < FeatureComparisonBooleanRow
743749 title = "Private cloud"
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ export type PricingPlanFeatures = {
1818 apiAccess : boolean ;
1919 protectedPreviews : boolean ;
2020 sso : boolean ;
21+ soc2 : boolean ;
2122 privateCloud : boolean ;
2223 onPremise : boolean ;
2324 instantEnvironmentResume : boolean ;
@@ -42,6 +43,7 @@ export const FREE_FEATURES: PricingPlanFeatures = {
4243 apiAccess : true ,
4344 protectedPreviews : false ,
4445 sso : false ,
46+ soc2 : true ,
4547 privateCloud : false ,
4648 onPremise : false ,
4749 instantEnvironmentResume : true ,
@@ -67,6 +69,7 @@ export const PRO_FEATURES: PricingPlanFeatures = {
6769 apiAccess : true ,
6870 protectedPreviews : false ,
6971 sso : false ,
72+ soc2 : true ,
7073 privateCloud : false ,
7174 onPremise : false ,
7275 instantEnvironmentResume : true ,
@@ -91,6 +94,7 @@ export const ENTERPRISE_FEATURES: PricingPlanFeatures = {
9194 apiAccess : true ,
9295 protectedPreviews : true ,
9396 sso : true ,
97+ soc2 : true ,
9498 privateCloud : true ,
9599 onPremise : true ,
96100 instantEnvironmentResume : true ,
Original file line number Diff line number Diff line change @@ -68,6 +68,7 @@ export const ENTERPRISE_PLAN: PricingPlan = {
6868 'On-premise options' ,
6969 'Private managed cloud' ,
7070 'Dedicated support' ,
71+ 'SOC 2 Type II compliant' ,
7172 'SSO' ,
7273 ] ,
7374} ;
You can’t perform that action at this time.
0 commit comments