@gradientedge/cdk-utils 9.47.3 → 9.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.
@@ -82,6 +82,7 @@ class AzureAppServiceManager {
82
82
  ...props.siteConfig,
83
83
  alwaysOn: props.siteConfig.alwaysOn ?? true,
84
84
  applicationStack: props.siteConfig.applicationStack ?? { nodeVersion: '22-lts' },
85
+ minimumTlsVersion: props.siteConfig.minimumTlsVersion ?? '1.3',
85
86
  },
86
87
  tags: props.tags ?? {
87
88
  environment: scope.props.stage,
@@ -139,6 +139,7 @@ class AzureFunctionManager {
139
139
  },
140
140
  ]),
141
141
  connectionStrings: props.connectionStrings,
142
+ minTlsVersion: props.minTlsVersion ?? '1.3',
142
143
  },
143
144
  },
144
145
  },
@@ -25,4 +25,5 @@ export interface FunctionAppFlexConsumptionProps {
25
25
  storageAccountConnectionStringName?: string;
26
26
  storageConnectionString: string;
27
27
  sourceCodeHash: string;
28
+ minTlsVersion?: string;
28
29
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.47.3",
3
+ "version": "9.48.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -54,7 +54,7 @@
54
54
  "@aws-sdk/credential-providers": "^3.738.0",
55
55
  "@aws-sdk/types": "^3.734.0",
56
56
  "@cdktf/provider-aws": "^19.50.0",
57
- "@cdktf/provider-azurerm": "^13.22.0",
57
+ "@cdktf/provider-azurerm": "^13.23.0",
58
58
  "@cdktf/provider-cloudflare": "^11.29.0",
59
59
  "@types/lodash": "^4.17.15",
60
60
  "@types/node": "^22.13.0",
@@ -62,7 +62,7 @@
62
62
  "app-root-path": "^3.1.0",
63
63
  "aws-cdk-lib": "^2.178.1",
64
64
  "cdktf": "^0.20.11",
65
- "cdktf-local-exec": "^0.5.54",
65
+ "cdktf-local-exec": "^0.5.60",
66
66
  "constructs": "^10.4.2",
67
67
  "lodash": "^4.17.21",
68
68
  "moment": "^2.30.1",
@@ -72,11 +72,11 @@
72
72
  "uuid": "^11.0.5"
73
73
  },
74
74
  "devDependencies": {
75
- "@babel/core": "^7.26.7",
75
+ "@babel/core": "^7.26.10",
76
76
  "@babel/eslint-parser": "^7.26.5",
77
77
  "@babel/plugin-proposal-class-properties": "^7.18.6",
78
78
  "@types/jest": "^29.5.14",
79
- "@typescript-eslint/eslint-plugin": "^8.22.0",
79
+ "@typescript-eslint/eslint-plugin": "^8.26.1",
80
80
  "@typescript-eslint/parser": "^8.22.0",
81
81
  "aws-cdk": "^2.177.0",
82
82
  "better-docs": "^2.7.3",
@@ -97,7 +97,7 @@
97
97
  "jsdoc-mermaid": "^1.0.0",
98
98
  "jsdoc-plugin-typescript": "^3.2.0",
99
99
  "jsdoc-to-markdown": "^9.1.1",
100
- "prettier": "^3.4.2",
100
+ "prettier": "^3.5.3",
101
101
  "prettier-plugin-organize-imports": "^4.1.0",
102
102
  "rimraf": "^6.0.1",
103
103
  "semantic-release": "^24.2.1",
@@ -88,6 +88,7 @@ export class AzureAppServiceManager {
88
88
  ...props.siteConfig,
89
89
  alwaysOn: props.siteConfig.alwaysOn ?? true,
90
90
  applicationStack: props.siteConfig.applicationStack ?? { nodeVersion: '22-lts' },
91
+ minimumTlsVersion: props.siteConfig.minimumTlsVersion ?? '1.3',
91
92
  },
92
93
  tags: props.tags ?? {
93
94
  environment: scope.props.stage,
@@ -156,6 +156,7 @@ export class AzureFunctionManager {
156
156
  },
157
157
  ]),
158
158
  connectionStrings: props.connectionStrings,
159
+ minTlsVersion: props.minTlsVersion ?? '1.3',
159
160
  },
160
161
  },
161
162
  },
@@ -27,4 +27,5 @@ export interface FunctionAppFlexConsumptionProps {
27
27
  storageAccountConnectionStringName?: string
28
28
  storageConnectionString: string
29
29
  sourceCodeHash: string
30
+ minTlsVersion?: string
30
31
  }