@gradientedge/cdk-utils 8.64.0 → 8.65.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.
- package/dist/src/lib/construct/site-with-ecs-backend/main.js +1 -0
- package/dist/src/lib/manager/aws/efs-manager.js +2 -1
- package/dist/src/lib/types/aws/index.d.ts +1 -0
- package/package.json +6 -6
- package/src/lib/construct/site-with-ecs-backend/main.ts +1 -0
- package/src/lib/manager/aws/efs-manager.ts +2 -1
- package/src/lib/types/aws/index.ts +1 -0
|
@@ -237,6 +237,7 @@ class SiteWithEcsBackend extends common_1.CommonConstruct {
|
|
|
237
237
|
healthCheckGracePeriod: cdk.Duration.seconds(60),
|
|
238
238
|
assignPublicIp: true,
|
|
239
239
|
minHealthyPercent: this.props.siteTask.minHealthyPercent,
|
|
240
|
+
maxHealthyPercent: this.props.siteTask.maxHealthyPercent,
|
|
240
241
|
taskDefinition: this.props.siteTask.taskDefinition,
|
|
241
242
|
taskImageOptions: {
|
|
242
243
|
enableLogging: true,
|
|
@@ -70,7 +70,8 @@ class EfsManager {
|
|
|
70
70
|
createFileSystem(id, scope, props, vpc, accessPointOptions, securityGroup, vpcSubnets) {
|
|
71
71
|
if (!props)
|
|
72
72
|
throw `EFS props undefined for ${id}`;
|
|
73
|
-
const
|
|
73
|
+
const fileSystemId = props.provisionNewOnDeployment ? `${id}-${new Date().getMilliseconds()}` : `${id}`;
|
|
74
|
+
const fileSystem = new efs.FileSystem(scope, `${fileSystemId}`, {
|
|
74
75
|
...props,
|
|
75
76
|
vpc,
|
|
76
77
|
securityGroup,
|
|
@@ -603,6 +603,7 @@ export interface LogQueryWidgetProps extends watch.LogQueryWidgetProps {
|
|
|
603
603
|
* @subcategory Properties
|
|
604
604
|
*/
|
|
605
605
|
export interface EfsFileSystemProps extends efs.FileSystemProps {
|
|
606
|
+
provisionNewOnDeployment?: boolean;
|
|
606
607
|
rootDirectory?: string;
|
|
607
608
|
transitEncryption?: string;
|
|
608
609
|
transitEncryptionPort?: number;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradientedge/cdk-utils",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.65.0",
|
|
4
4
|
"description": "Utilities for AWS CDK provisioning",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"engines": {
|
|
@@ -47,12 +47,12 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@aws-sdk/client-secrets-manager": "^3.338.0",
|
|
50
|
-
"@types/lodash": "^4.14.
|
|
51
|
-
"@types/node": "^20.2.
|
|
50
|
+
"@types/lodash": "^4.14.195",
|
|
51
|
+
"@types/node": "^20.2.4",
|
|
52
52
|
"@types/uuid": "^9.0.1",
|
|
53
53
|
"app-root-path": "^3.1.0",
|
|
54
|
-
"aws-cdk-lib": "^2.
|
|
55
|
-
"constructs": "^10.2.
|
|
54
|
+
"aws-cdk-lib": "^2.81.0",
|
|
55
|
+
"constructs": "^10.2.33",
|
|
56
56
|
"lodash": "^4.17.21",
|
|
57
57
|
"moment": "^2.29.4",
|
|
58
58
|
"nconf": "^0.12.0",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
"@types/jest": "^29.5.1",
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "^5.59.7",
|
|
69
69
|
"@typescript-eslint/parser": "^5.59.7",
|
|
70
|
-
"aws-cdk": "^2.
|
|
70
|
+
"aws-cdk": "^2.81.0",
|
|
71
71
|
"better-docs": "^2.7.2",
|
|
72
72
|
"codecov": "^3.8.3",
|
|
73
73
|
"commitizen": "^4.3.0",
|
|
@@ -260,6 +260,7 @@ export class SiteWithEcsBackend extends CommonConstruct {
|
|
|
260
260
|
healthCheckGracePeriod: cdk.Duration.seconds(60),
|
|
261
261
|
assignPublicIp: true,
|
|
262
262
|
minHealthyPercent: this.props.siteTask.minHealthyPercent,
|
|
263
|
+
maxHealthyPercent: this.props.siteTask.maxHealthyPercent,
|
|
263
264
|
taskDefinition: this.props.siteTask.taskDefinition,
|
|
264
265
|
taskImageOptions: {
|
|
265
266
|
enableLogging: true,
|
|
@@ -58,7 +58,8 @@ export class EfsManager {
|
|
|
58
58
|
) {
|
|
59
59
|
if (!props) throw `EFS props undefined for ${id}`
|
|
60
60
|
|
|
61
|
-
const
|
|
61
|
+
const fileSystemId = props.provisionNewOnDeployment ? `${id}-${new Date().getMilliseconds()}` : `${id}`
|
|
62
|
+
const fileSystem = new efs.FileSystem(scope, `${fileSystemId}`, {
|
|
62
63
|
...props,
|
|
63
64
|
vpc,
|
|
64
65
|
securityGroup,
|
|
@@ -641,6 +641,7 @@ export interface LogQueryWidgetProps extends watch.LogQueryWidgetProps {
|
|
|
641
641
|
* @subcategory Properties
|
|
642
642
|
*/
|
|
643
643
|
export interface EfsFileSystemProps extends efs.FileSystemProps {
|
|
644
|
+
provisionNewOnDeployment?: boolean
|
|
644
645
|
rootDirectory?: string
|
|
645
646
|
transitEncryption?: string
|
|
646
647
|
transitEncryptionPort?: number
|