Skip to content

Commit 121246d

Browse files
committed
wip
1 parent a1a9985 commit 121246d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

backend/internal/processes/bootstrap.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -238,7 +238,7 @@ func installGateway(store database.Datastore, appConfig *config.AppConfig) error
238238
Version: version,
239239
Variables: simplevars,
240240
DisplayName: "Unity Health Status Lambda",
241-
DeploymentName: fmt.Sprintf("%s-%s", name, name),
241+
DeploymentName: fmt.Sprintf("default-%s", name),
242242
}
243243
err := TriggerInstallNew(store, &installParams, appConfig, true)
244244
if err != nil {
@@ -273,7 +273,7 @@ func installBasicAPIGateway(store database.Datastore, appConfig *config.AppConfi
273273
Version: version,
274274
Variables: nil,
275275
DisplayName: "Core API Gateway",
276-
DeploymentName: fmt.Sprintf("%s-%s-%s", appConfig.Project, appConfig.Venue, name),
276+
DeploymentName: fmt.Sprintf("default-%s", name),
277277
}
278278

279279
err := TriggerInstallNew(store, &installParams, appConfig, true)
@@ -352,7 +352,7 @@ func installUnityCloudEnv(store database.Datastore, appConfig *config.AppConfig)
352352
Version: version,
353353
Variables: varmap,
354354
DisplayName: "Unity Cloud Environment",
355-
DeploymentName: fmt.Sprintf("%s-%s-%s", appConfig.Project, appConfig.Venue, name),
355+
DeploymentName: fmt.Sprintf("default-%s", name),
356356
}
357357

358358
err = TriggerInstallNew(store, &installParams, appConfig, true)
@@ -400,7 +400,7 @@ func installHealthStatusLambda(store database.Datastore, appConfig *config.AppCo
400400
Version: version,
401401
Variables: nil,
402402
DisplayName: "Unity Health Status Lambda",
403-
DeploymentName: fmt.Sprintf("%s-%s-%s", appConfig.Project, appConfig.Venue, name),
403+
DeploymentName: fmt.Sprintf("default-%s", name),
404404
}
405405

406406
err := TriggerInstallNew(store, &installParams, appConfig, true)

0 commit comments

Comments
 (0)