@gradientedge/cdk-utils 8.147.0 → 8.149.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.
@@ -65,14 +65,14 @@ class CommonCloudflareConstruct extends cdktf_1.TerraformStack {
65
65
  switch (this.props.remoteBackend?.type) {
66
66
  case constants_1.RemoteBackend.s3:
67
67
  this.awsProvider = new provider_1.AwsProvider(this, `${this.id}-aws-provider`, {
68
- profile: process.env.AWS_PROFILE ?? 'default',
68
+ profile: process.env.AWS_PROFILE,
69
69
  region: this.props.remoteBackend.region,
70
70
  });
71
71
  this.s3Backend = new cdktf_1.S3Backend(this, {
72
72
  bucket: this.props.remoteBackend.bucketName,
73
73
  dynamodbTable: this.props.remoteBackend.tableName,
74
74
  key: `${this.id}`,
75
- profile: process.env.AWS_PROFILE ?? 'default',
75
+ profile: process.env.AWS_PROFILE,
76
76
  region: this.props.remoteBackend.region,
77
77
  });
78
78
  break;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.147.0",
3
+ "version": "8.149.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -47,42 +47,42 @@
47
47
  }
48
48
  },
49
49
  "dependencies": {
50
- "@aws-sdk/client-secrets-manager": "^3.458.0",
51
- "@aws-sdk/credential-providers": "^3.458.0",
52
- "@aws-sdk/types": "^3.451.0",
53
- "@cdktf/provider-aws": "^18.0.6",
54
- "@cdktf/provider-azurerm": "^11.0.6",
55
- "@cdktf/provider-cloudflare": "^10.0.3",
50
+ "@aws-sdk/client-secrets-manager": "^3.470.0",
51
+ "@aws-sdk/credential-providers": "^3.470.0",
52
+ "@aws-sdk/types": "^3.468.0",
53
+ "@cdktf/provider-aws": "^18.1.0",
54
+ "@cdktf/provider-azurerm": "^11.1.0",
55
+ "@cdktf/provider-cloudflare": "^10.0.4",
56
56
  "@types/lodash": "^4.14.202",
57
- "@types/node": "^20.10.0",
57
+ "@types/node": "^20.10.4",
58
58
  "@types/uuid": "^9.0.7",
59
59
  "app-root-path": "^3.1.0",
60
- "aws-cdk-lib": "^2.110.1",
61
- "cdktf": "^0.19.1",
62
- "cdktf-local-exec": "^0.4.8",
60
+ "aws-cdk-lib": "^2.114.1",
61
+ "cdktf": "^0.19.2",
62
+ "cdktf-local-exec": "^0.4.10",
63
63
  "constructs": "^10.3.0",
64
64
  "lodash": "^4.17.21",
65
65
  "moment": "^2.29.4",
66
66
  "nconf": "^0.12.1",
67
67
  "pluralize": "^8.0.0",
68
- "ts-node": "^10.9.1",
68
+ "ts-node": "^10.9.2",
69
69
  "uuid": "^9.0.1"
70
70
  },
71
71
  "devDependencies": {
72
- "@babel/core": "^7.23.3",
72
+ "@babel/core": "^7.23.5",
73
73
  "@babel/eslint-parser": "^7.23.3",
74
74
  "@babel/plugin-proposal-class-properties": "^7.18.6",
75
- "@types/jest": "^29.5.10",
76
- "@typescript-eslint/eslint-plugin": "^6.12.0",
77
- "@typescript-eslint/parser": "^6.12.0",
78
- "aws-cdk": "^2.110.1",
79
- "better-docs": "^2.7.2",
75
+ "@types/jest": "^29.5.11",
76
+ "@typescript-eslint/eslint-plugin": "^6.13.2",
77
+ "@typescript-eslint/parser": "^6.13.2",
78
+ "aws-cdk": "^2.114.1",
79
+ "better-docs": "^2.7.3",
80
80
  "codecov": "^3.8.3",
81
81
  "commitizen": "^4.3.0",
82
82
  "docdash": "^2.0.2",
83
83
  "dotenv": "^16.3.1",
84
- "eslint": "^8.54.0",
85
- "eslint-config-prettier": "^9.0.0",
84
+ "eslint": "^8.55.0",
85
+ "eslint-config-prettier": "^9.1.0",
86
86
  "eslint-plugin-import": "^2.29.0",
87
87
  "eslint-plugin-jsdoc": "^46.9.0",
88
88
  "husky": "^8.0.3",
@@ -94,14 +94,14 @@
94
94
  "jsdoc-mermaid": "^1.0.0",
95
95
  "jsdoc-plugin-typescript": "^2.2.1",
96
96
  "jsdoc-to-markdown": "^8.0.0",
97
- "prettier": "^3.1.0",
97
+ "prettier": "^3.1.1",
98
98
  "prettier-plugin-organize-imports": "^3.2.4",
99
99
  "rimraf": "^5.0.5",
100
- "semantic-release": "^22.0.8",
100
+ "semantic-release": "^22.0.10",
101
101
  "taffydb": "^2.7.3",
102
102
  "ts-jest": "^29.1.1",
103
- "ts-node": "^10.9.1",
104
- "typescript": "5.3.2"
103
+ "ts-node": "^10.9.2",
104
+ "typescript": "5.3.3"
105
105
  },
106
106
  "optionalDependencies": {
107
107
  "prop-types": "^15.8.1",
@@ -83,14 +83,14 @@ export class CommonCloudflareConstruct extends TerraformStack {
83
83
  switch (this.props.remoteBackend?.type) {
84
84
  case RemoteBackend.s3:
85
85
  this.awsProvider = new AwsProvider(this, `${this.id}-aws-provider`, {
86
- profile: process.env.AWS_PROFILE ?? 'default',
86
+ profile: process.env.AWS_PROFILE,
87
87
  region: this.props.remoteBackend.region,
88
88
  })
89
89
  this.s3Backend = new S3Backend(this, {
90
90
  bucket: this.props.remoteBackend.bucketName,
91
91
  dynamodbTable: this.props.remoteBackend.tableName,
92
92
  key: `${this.id}`,
93
- profile: process.env.AWS_PROFILE ?? 'default',
93
+ profile: process.env.AWS_PROFILE,
94
94
  region: this.props.remoteBackend.region,
95
95
  })
96
96
  break