@gradientedge/cdk-utils-azure 2.38.0 → 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 });
|