File tree Expand file tree Collapse file tree 2 files changed +1
-6
lines changed
Expand file tree Collapse file tree 2 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ export const notificationCodeProps: NotificationProps = {
2020 workerSqsQueueName : 'mobile-notifications-harvester-CODE-Sqs-1R9TBA4F2C6TG' ,
2121 sloMonitoringQueueName : 'notifications-slo-monitoring-CODE' ,
2222 minAsgSize : 1 ,
23- maxAsgSize : 2 ,
2423} ;
2524
2625export const notificationProdProps : NotificationProps = {
@@ -32,7 +31,6 @@ export const notificationProdProps: NotificationProps = {
3231 workerSqsQueueName : 'mobile-notifications-harvester-PROD-Sqs-NPP9X15G7WAO' ,
3332 sloMonitoringQueueName : 'notifications-slo-monitoring-PROD' ,
3433 minAsgSize : 3 ,
35- maxAsgSize : 6 ,
3634} ;
3735
3836new Notification ( app , 'Notification-CODE' , notificationCodeProps ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ export interface NotificationProps extends GuStackProps {
3030 workerSqsQueueName : string ;
3131 sloMonitoringQueueName : string ;
3232 minAsgSize : number ;
33- maxAsgSize : number ;
3433}
3534
3635export class Notification extends GuStack {
@@ -44,7 +43,6 @@ export class Notification extends GuStack {
4443 workerSqsQueueName,
4544 sloMonitoringQueueName,
4645 minAsgSize,
47- maxAsgSize,
4846 } = props ;
4947
5048 const yamlTemplateFilePath = join (
@@ -140,8 +138,7 @@ export class Notification extends GuStack {
140138 ] ,
141139 } ,
142140 scaling : {
143- minimumInstances : minAsgSize ,
144- maximumInstances : maxAsgSize ,
141+ minimumInstances : minAsgSize
145142 } ,
146143 userData : {
147144 distributable : {
You can’t perform that action at this time.
0 commit comments