diff --git a/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.controller.ts b/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.controller.ts index b7cf3d5c5eb..35fcfa14d89 100644 --- a/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.controller.ts +++ b/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.controller.ts @@ -48,4 +48,12 @@ export class DeployCloudFormationStackConfigController implements IController { this.cloudFormationStackArtifactController.accountsForArtifact.length > 1 ); } + + public isChangeSet() { + return this.$scope.stage.isChangeSet; + } + + public toggleChangeSet() { + this.$scope.stage.isChangeSet = !this.$scope.stage.isChangeSet; + } } diff --git a/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.html b/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.html index a3534f9760b..f39bf0b2d51 100644 --- a/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.html +++ b/app/scripts/modules/amazon/src/pipeline/stages/deployCloudFormation/deployCloudFormationStackConfig.html @@ -16,7 +16,19 @@

Template Configuration

+
+ +
+ + + +