Skip to content

Commit

Permalink
VCI-752: Add default value F1 to ServicePlan parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
krankenbro committed Jan 12, 2024
1 parent 4cffd94 commit 8dffb5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/VirtoCommerce.Build/Cloud/Build.SaaS.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ internal partial class Build
[Parameter("SaaS Auth Provider")] public string CloudAuthProvider { get; set; } = "GitHub";
[Parameter("App Project Name")] public string AppProject { get; set; }
[Parameter("Cloud Environment Name")] public string EnvironmentName { get; set; }
[Parameter("Cloud Environment Service Plan")] public string ServicePlan { get; set; }
[Parameter("Cloud Environment Service Plan")] public string ServicePlan { get; set; } = "F1";
[Parameter("Cloud Environment Cluster Name")] public string ClusterName { get; set; }
[Parameter("Cloud Environment Db Provider")] public string DbProvider { get; set; }
[Parameter("Cloud Environment Db Name")] public string DbName { get; set; }
Expand Down Expand Up @@ -326,7 +326,7 @@ private void SaveCloudToken(string token)

public Target CloudInit => _ => _
.Before(PrepareDockerContext, BuildAndPush, CloudDeploy)
.Requires(() => ServicePlan, () => EnvironmentName)
.Requires(() => EnvironmentName)
.Executes(async () =>
{
var model = new NewEnvironmentModel
Expand Down

0 comments on commit 8dffb5c

Please sign in to comment.