Skip to content

Commit

Permalink
Fix bug around upgrading pipeline stacks
Browse files Browse the repository at this point in the history
  • Loading branch information
ipmb committed Mar 1, 2023
1 parent 14965c9 commit 86d8721
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions stacks/app_pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,14 @@ var DefaultAppStackParameters = AppStackParameters{
}

var DefaultPipelineStackParameters = AppStackParameters{
Type: "pipeline",
HealthCheckPath: DefaultAppStackParameters.HealthCheckPath,
HealthcheckInterval: DefaultAppStackParameters.HealthcheckInterval,
DeregistrationDelay: DefaultAppStackParameters.DeregistrationDelay,
Fargate: DefaultAppStackParameters.Fargate,
BuildWebhook: DefaultAppStackParameters.BuildWebhook,
Type: "pipeline",
HealthCheckPath: DefaultAppStackParameters.HealthCheckPath,
HealthcheckInterval: DefaultAppStackParameters.HealthcheckInterval,
LogRetentionDays: DefaultAppStackParameters.LogRetentionDays,
DefaultAutoscalingAverageCpuTarget: DefaultAppStackParameters.DefaultAutoscalingAverageCpuTarget,
DeregistrationDelay: DefaultAppStackParameters.DeregistrationDelay,
Fargate: DefaultAppStackParameters.Fargate,
BuildWebhook: DefaultAppStackParameters.BuildWebhook,
}

func (p *AppStackParameters) Import(parameters []*cloudformation.Parameter) error {
Expand Down

0 comments on commit 86d8721

Please sign in to comment.