@gradientedge/cdk-utils 9.79.0 → 9.80.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.
@@ -91,6 +91,7 @@ class AzureAppServiceManager {
91
91
  (0, utils_1.createAzureTfOutput)(`${id}-linuxWebAppName`, scope, linuxWebApp.name);
92
92
  (0, utils_1.createAzureTfOutput)(`${id}-linuxWebAppFriendlyUniqueId`, scope, linuxWebApp.friendlyUniqueId);
93
93
  (0, utils_1.createAzureTfOutput)(`${id}-linuxWebAppId`, scope, linuxWebApp.id);
94
+ (0, utils_1.createAzureTfOutput)(`${id}-linuxWebAppDefaultHostname`, scope, linuxWebApp.defaultHostname);
94
95
  return linuxWebApp;
95
96
  }
96
97
  }
@@ -6,6 +6,4 @@ export interface FunctionAppProps extends LinuxFunctionAppConfig {
6
6
  export interface FunctionProps extends FunctionAppFunctionConfig {
7
7
  }
8
8
  export interface FunctionAppFlexConsumptionProps extends FunctionAppFlexConsumptionConfig {
9
- sourceCodeHash: string;
10
- deploySource: string;
11
9
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.79.0",
3
+ "version": "9.80.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -98,6 +98,7 @@ export class AzureAppServiceManager {
98
98
  createAzureTfOutput(`${id}-linuxWebAppName`, scope, linuxWebApp.name)
99
99
  createAzureTfOutput(`${id}-linuxWebAppFriendlyUniqueId`, scope, linuxWebApp.friendlyUniqueId)
100
100
  createAzureTfOutput(`${id}-linuxWebAppId`, scope, linuxWebApp.id)
101
+ createAzureTfOutput(`${id}-linuxWebAppDefaultHostname`, scope, linuxWebApp.defaultHostname)
101
102
 
102
103
  return linuxWebApp
103
104
  }
@@ -6,7 +6,4 @@ export interface FunctionAppProps extends LinuxFunctionAppConfig {}
6
6
 
7
7
  export interface FunctionProps extends FunctionAppFunctionConfig {}
8
8
 
9
- export interface FunctionAppFlexConsumptionProps extends FunctionAppFlexConsumptionConfig {
10
- sourceCodeHash: string
11
- deploySource: string
12
- }
9
+ export interface FunctionAppFlexConsumptionProps extends FunctionAppFlexConsumptionConfig {}