@gradientedge/cdk-utils 8.86.0 → 8.88.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.
@@ -114,7 +114,7 @@ class AppConfigManager {
114
114
  throw `AppConfig props undefined for ${id}`;
115
115
  const environment = new appconfig.CfnEnvironment(scope, `${id}`, {
116
116
  applicationId: applicationId,
117
- name: scope.props.stage,
117
+ name: props.environment.name ?? scope.props.stage,
118
118
  description: props.environment.description,
119
119
  monitors: props.environment.monitors,
120
120
  tags: props.environment.tags,
@@ -142,6 +142,7 @@ class AppConfigManager {
142
142
  description: props.configurationProfile.description,
143
143
  retrievalRoleArn: props.configurationProfile.retrievalRoleArn,
144
144
  tags: props.configurationProfile.tags,
145
+ type: props.configurationProfile.type,
145
146
  validators: props.configurationProfile.validators,
146
147
  });
147
148
  utils.createCfnOutput(`${id}-configurationProfileId`, scope, cdk.Fn.ref(profile.logicalId));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.86.0",
3
+ "version": "8.88.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -46,13 +46,13 @@
46
46
  }
47
47
  },
48
48
  "dependencies": {
49
- "@aws-sdk/client-secrets-manager": "^3.350.0",
49
+ "@aws-sdk/client-secrets-manager": "^3.353.0",
50
50
  "@types/lodash": "^4.14.195",
51
- "@types/node": "^20.3.0",
51
+ "@types/node": "^20.3.1",
52
52
  "@types/uuid": "^9.0.2",
53
53
  "app-root-path": "^3.1.0",
54
- "aws-cdk-lib": "^2.83.1",
55
- "constructs": "^10.2.50",
54
+ "aws-cdk-lib": "^2.84.0",
55
+ "constructs": "^10.2.52",
56
56
  "lodash": "^4.17.21",
57
57
  "moment": "^2.29.4",
58
58
  "nconf": "^0.12.0",
@@ -67,12 +67,12 @@
67
67
  "@types/jest": "^29.5.2",
68
68
  "@typescript-eslint/eslint-plugin": "^5.59.11",
69
69
  "@typescript-eslint/parser": "^5.59.11",
70
- "aws-cdk": "^2.83.1",
70
+ "aws-cdk": "^2.84.0",
71
71
  "better-docs": "^2.7.2",
72
72
  "codecov": "^3.8.3",
73
73
  "commitizen": "^4.3.0",
74
74
  "docdash": "^2.0.1",
75
- "dotenv": "^16.1.4",
75
+ "dotenv": "^16.2.0",
76
76
  "eslint": "^8.42.0",
77
77
  "eslint-config-prettier": "^8.8.0",
78
78
  "eslint-plugin-import": "^2.27.5",
@@ -105,7 +105,7 @@ export class AppConfigManager {
105
105
 
106
106
  const environment = new appconfig.CfnEnvironment(scope, `${id}`, {
107
107
  applicationId: applicationId,
108
- name: scope.props.stage,
108
+ name: props.environment.name ?? scope.props.stage,
109
109
  description: props.environment.description,
110
110
  monitors: props.environment.monitors,
111
111
  tags: props.environment.tags,
@@ -141,6 +141,7 @@ export class AppConfigManager {
141
141
  description: props.configurationProfile.description,
142
142
  retrievalRoleArn: props.configurationProfile.retrievalRoleArn,
143
143
  tags: props.configurationProfile.tags,
144
+ type: props.configurationProfile.type,
144
145
  validators: props.configurationProfile.validators,
145
146
  })
146
147