@gradientedge/cdk-utils-azure 2.37.3 → 2.39.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.
|
@@ -348,7 +348,11 @@ export class AzureFunctionApp extends CommonAzureConstruct {
|
|
|
348
348
|
}).keys[0].value};EndpointSuffix=core.windows.net`,
|
|
349
349
|
},
|
|
350
350
|
],
|
|
351
|
-
connectionStrings:
|
|
351
|
+
connectionStrings: this.appConnectionStrings.map(cs => ({
|
|
352
|
+
name: cs.name,
|
|
353
|
+
connectionString: cs.value,
|
|
354
|
+
type: cs.type,
|
|
355
|
+
})),
|
|
352
356
|
},
|
|
353
357
|
httpsOnly: this.props.functionApp.app?.httpsOnly ?? true,
|
|
354
358
|
}, { ...resourceOptions });
|
|
@@ -138,7 +138,7 @@ export class AzureFunctionManager {
|
|
|
138
138
|
mode: DeploymentMode.Incremental,
|
|
139
139
|
template: {
|
|
140
140
|
$schema: 'https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#',
|
|
141
|
-
contentVersion:
|
|
141
|
+
contentVersion: `1.0.${Date.now()}.0`,
|
|
142
142
|
resources: [
|
|
143
143
|
{
|
|
144
144
|
type: 'Microsoft.Web/sites',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gradientedge/cdk-utils-azure",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.39.0",
|
|
4
4
|
"description": "Azure Pulumi utilities for @gradientedge/cdk-utils",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/src/index.js",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"lodash": "4.18.1",
|
|
24
24
|
"uuid": "14.0.0",
|
|
25
25
|
"yaml": "2.9.0",
|
|
26
|
-
"@gradientedge/cdk-utils-common": "2.
|
|
26
|
+
"@gradientedge/cdk-utils-common": "2.5.0"
|
|
27
27
|
},
|
|
28
28
|
"keywords": [
|
|
29
29
|
"gradientedge",
|