File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
infrastructure/src/common Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ export const createECSfargateService = ({
40
40
subnets : subnetIds ,
41
41
} ,
42
42
taskDefinitionArgs : {
43
+ // TODO: Ignore changes for taskDefinitionArgs.cpu, memory
43
44
// cpu: option.taskCpu,
44
45
// memory: option.taskMemory,
45
46
executionRole : {
@@ -88,7 +89,7 @@ export const createECSfargateService = ({
88
89
scalableDimension : 'ecs:service:DesiredCount' ,
89
90
serviceNamespace : 'ecs' ,
90
91
} ,
91
- { replaceOnChanges : [ 'resourceId' ] } ,
92
+ // { replaceOnChanges: ['resourceId'] },
92
93
)
93
94
94
95
const ecsCPUPolicy = new aws . appautoscaling . Policy (
@@ -107,7 +108,7 @@ export const createECSfargateService = ({
107
108
scaleOutCooldown : 60 ,
108
109
} ,
109
110
} ,
110
- { replaceOnChanges : [ 'resourceId' ] } ,
111
+ // { replaceOnChanges: ['resourceId'] },
111
112
)
112
113
113
114
const ecsMemoryPolicy = new aws . appautoscaling . Policy (
@@ -126,6 +127,6 @@ export const createECSfargateService = ({
126
127
scaleOutCooldown : 60 ,
127
128
} ,
128
129
} ,
129
- { replaceOnChanges : [ 'resourceId' ] } ,
130
+ // { replaceOnChanges: ['resourceId'] },
130
131
)
131
132
}
You can’t perform that action at this time.
0 commit comments