@gradientedge/cdk-utils 8.47.0 → 8.49.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -235,6 +235,8 @@ class SiteWithEcsBackend extends common_1.CommonConstruct {
235
235
  memoryLimitMiB: this.props.siteTask.memoryLimitMiB,
236
236
  healthCheckGracePeriod: cdk.Duration.seconds(60),
237
237
  assignPublicIp: true,
238
+ minHealthyPercent: this.props.siteTask.minHealthyPercent,
239
+ taskDefinition: this.props.siteTask.taskDefinition,
238
240
  taskImageOptions: {
239
241
  enableLogging: true,
240
242
  logDriver: ecs.LogDriver.awsLogs({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.47.0",
3
+ "version": "8.49.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -258,6 +258,8 @@ export class SiteWithEcsBackend extends CommonConstruct {
258
258
  memoryLimitMiB: this.props.siteTask.memoryLimitMiB,
259
259
  healthCheckGracePeriod: cdk.Duration.seconds(60),
260
260
  assignPublicIp: true,
261
+ minHealthyPercent: this.props.siteTask.minHealthyPercent,
262
+ taskDefinition: this.props.siteTask.taskDefinition,
261
263
  taskImageOptions: {
262
264
  enableLogging: true,
263
265
  logDriver: ecs.LogDriver.awsLogs({