@gradientedge/cdk-utils 8.46.0 → 8.48.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,7 @@ 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
|
+
taskDefinition: this.props.siteTask.taskDefinition,
|
|
238
239
|
taskImageOptions: {
|
|
239
240
|
enableLogging: true,
|
|
240
241
|
logDriver: ecs.LogDriver.awsLogs({
|
|
@@ -140,6 +140,7 @@ class S3Manager {
|
|
|
140
140
|
encryptionKey: props.encryptionKey,
|
|
141
141
|
lifecycleRules: this.determineBucketLifecycleRules(props),
|
|
142
142
|
metrics: props.metrics,
|
|
143
|
+
objectOwnership: props.objectOwnership,
|
|
143
144
|
publicReadAccess: props.publicReadAccess,
|
|
144
145
|
removalPolicy: props.removalPolicy || cdk.RemovalPolicy.RETAIN,
|
|
145
146
|
serverAccessLogsBucket: logBucket,
|
package/package.json
CHANGED
|
@@ -258,6 +258,7 @@ export class SiteWithEcsBackend extends CommonConstruct {
|
|
|
258
258
|
memoryLimitMiB: this.props.siteTask.memoryLimitMiB,
|
|
259
259
|
healthCheckGracePeriod: cdk.Duration.seconds(60),
|
|
260
260
|
assignPublicIp: true,
|
|
261
|
+
taskDefinition: this.props.siteTask.taskDefinition,
|
|
261
262
|
taskImageOptions: {
|
|
262
263
|
enableLogging: true,
|
|
263
264
|
logDriver: ecs.LogDriver.awsLogs({
|
|
@@ -125,6 +125,7 @@ export class S3Manager {
|
|
|
125
125
|
encryptionKey: props.encryptionKey,
|
|
126
126
|
lifecycleRules: this.determineBucketLifecycleRules(props),
|
|
127
127
|
metrics: props.metrics,
|
|
128
|
+
objectOwnership: props.objectOwnership,
|
|
128
129
|
publicReadAccess: props.publicReadAccess,
|
|
129
130
|
removalPolicy: props.removalPolicy || cdk.RemovalPolicy.RETAIN,
|
|
130
131
|
serverAccessLogsBucket: logBucket,
|