diff --git a/app/scripts/modules/cloudfoundry/src/serverGroup/configure/serverGroupCommandBuilder.service.cf.ts b/app/scripts/modules/cloudfoundry/src/serverGroup/configure/serverGroupCommandBuilder.service.cf.ts index 67142ac5717..a69c2fa62cf 100644 --- a/app/scripts/modules/cloudfoundry/src/serverGroup/configure/serverGroupCommandBuilder.service.cf.ts +++ b/app/scripts/modules/cloudfoundry/src/serverGroup/configure/serverGroupCommandBuilder.service.cf.ts @@ -153,7 +153,7 @@ export class CloudFoundryServerGroupCommandBuilder { command.freeFormDetails = stage.freeFormDetails || command.freeFormDetails; command.maxRemainingAsgs = stage.maxRemainingAsgs; command.region = stage.region; - command.startApplication = stage.startApplication; + command.startApplication = stage.startApplication === undefined || stage.startApplication; command.stack = stage.stack || command.stack; command.strategy = stage.strategy; command.target = stage.target;