diff --git a/front/assets/js/billing/index.tsx b/front/assets/js/billing/index.tsx
index d856bacc3..d5d160beb 100644
--- a/front/assets/js/billing/index.tsx
+++ b/front/assets/js/billing/index.tsx
@@ -83,7 +83,7 @@ const Trial = (props: TrialProps) => {
|
- Startup
+ Cloud
Ideal for growing teams with frequent builds and
diff --git a/front/assets/js/billing/pages/plans_page.tsx b/front/assets/js/billing/pages/plans_page.tsx
index b6ee4e918..a2cb51e65 100644
--- a/front/assets/js/billing/pages/plans_page.tsx
+++ b/front/assets/js/billing/pages/plans_page.tsx
@@ -70,7 +70,7 @@ const ContactPlanSelection = () => {
Building frequently? Cut costs with the{` `}
- Scaleup plan. It offers advanced control,
+ Enterprise plan. It offers advanced control,
governance, and support SLAs, all in one annual package.
@@ -87,7 +87,7 @@ const ContactPlanSelection = () => {
|
|
- Scaleup
+ Enterprise
For peak performance teams that build frequently.
diff --git a/front/lib/front/models/billing/plan_switch.ex b/front/lib/front/models/billing/plan_switch.ex
index ff7a40e17..783e4321a 100644
--- a/front/lib/front/models/billing/plan_switch.ex
+++ b/front/lib/front/models/billing/plan_switch.ex
@@ -150,7 +150,7 @@ defmodule Front.Models.Billing.PlanSwitch do
defp available_plans do
[
Billing.PlanSwitch.AvailablePlan.new(
- name: "Startup - Cloud",
+ name: "Cloud",
type: :startup_cloud,
description: "Pay only for used machine time, no seat costs.",
features: [
@@ -164,7 +164,7 @@ defmodule Front.Models.Billing.PlanSwitch do
]
),
Billing.PlanSwitch.AvailablePlan.new(
- name: "Startup - Hybrid",
+ name: "Hybrid",
type: :startup_hybrid,
description: "Run jobs on your own infrastructure.",
features: [
diff --git a/front/lib/front_web/templates/deployments/forms/_subject_rules.html.eex b/front/lib/front_web/templates/deployments/forms/_subject_rules.html.eex
index b79e4df2f..6476674c3 100644
--- a/front/lib/front_web/templates/deployments/forms/_subject_rules.html.eex
+++ b/front/lib/front_web/templates/deployments/forms/_subject_rules.html.eex
@@ -63,7 +63,7 @@
Advanced user access control for Deployment Targets is available only to
- Scaleup plan customers. Please contact our Support for more information.
+ Enterprise plan customers. Please contact our Support for more information.
diff --git a/front/test/support/stubs/billing.ex b/front/test/support/stubs/billing.ex
index e683859be..19983cfb6 100644
--- a/front/test/support/stubs/billing.ex
+++ b/front/test/support/stubs/billing.ex
@@ -77,7 +77,7 @@ defmodule Support.Stubs.Billing do
spendings = [
stub_spending(
plan_summary: stub_plan(:startup_hybrid),
- display_name: "Startup - Hybrid #{formatted_from} - #{formated_to}",
+ display_name: "Hybrid #{formatted_from} - #{formated_to}",
from_date: [seconds: from_date |> Timex.to_unix()],
to_date: [seconds: to_date |> Timex.to_unix()],
summary:
@@ -639,7 +639,7 @@ defmodule Support.Stubs.Billing do
def stub_plan(:startup_hybrid, params) do
[
id: Ecto.UUID.generate(),
- name: "Startup - Hybrid - Postpaid",
+ name: "Hybrid - Postpaid",
slug: "startup_hybrid",
details: [],
charging_type: :CHARGING_TYPE_POSTPAID,
@@ -653,7 +653,7 @@ defmodule Support.Stubs.Billing do
def stub_plan(:startup_hybrid_prepaid, params) do
[
id: Ecto.UUID.generate(),
- name: "Startup - Hybrid - Prepaid",
+ name: "Hybrid - Prepaid",
slug: "startup_hybrid",
details: [],
charging_type: :CHARGING_TYPE_PREPAID,
|