@gradientedge/cdk-utils 9.42.1 → 9.43.1
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.
- package/dist/src/lib/azure/common/stack.d.ts +1 -0
- package/dist/src/lib/azure/common/stack.js +1 -0
- package/dist/src/lib/azure/common/types.d.ts +1 -0
- package/dist/src/lib/azure/services/api-management/types.d.ts +1 -0
- package/package.json +1 -1
- package/src/lib/azure/common/stack.ts +1 -0
- package/src/lib/azure/common/types.ts +1 -0
- package/src/lib/azure/services/api-management/types.ts +3 -1
|
@@ -43,6 +43,7 @@ class CommonAzureStack extends cdktf_1.TerraformStack {
|
|
|
43
43
|
domainName: this.node.tryGetContext('domainName'),
|
|
44
44
|
extraContexts: this.node.tryGetContext('extraContexts'),
|
|
45
45
|
features: this.node.tryGetContext('features'),
|
|
46
|
+
location: this.node.tryGetContext('location'),
|
|
46
47
|
name: this.node.tryGetContext('resourceGroupName'),
|
|
47
48
|
resourceGroupName: this.node.tryGetContext('resourceGroupName'),
|
|
48
49
|
skipStageForARecords: this.node.tryGetContext('skipStageForARecords'),
|
|
@@ -14,6 +14,7 @@ export interface CommonAzureStackProps extends BaseProps, AzurermProviderConfig
|
|
|
14
14
|
resourceNameOptions?: {
|
|
15
15
|
[key: string]: AzureResourceNameFormatterProps;
|
|
16
16
|
};
|
|
17
|
+
location?: string;
|
|
17
18
|
}
|
|
18
19
|
export interface AzureRemoteBackendProps extends AzurermBackendConfig {
|
|
19
20
|
type: AzureRemoteBackend;
|
|
@@ -6,6 +6,7 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
|
|
|
6
6
|
export interface ApiManagementProps extends ApiManagementConfig {
|
|
7
7
|
}
|
|
8
8
|
export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
|
|
9
|
+
backendUrlPath?: string;
|
|
9
10
|
}
|
|
10
11
|
export interface ApiManagementApiProps extends ApiManagementApiConfig {
|
|
11
12
|
operations: ApiManagementApiOperationConfig[];
|
package/package.json
CHANGED
|
@@ -47,6 +47,7 @@ export class CommonAzureStack extends TerraformStack {
|
|
|
47
47
|
domainName: this.node.tryGetContext('domainName'),
|
|
48
48
|
extraContexts: this.node.tryGetContext('extraContexts'),
|
|
49
49
|
features: this.node.tryGetContext('features'),
|
|
50
|
+
location: this.node.tryGetContext('location'),
|
|
50
51
|
name: this.node.tryGetContext('resourceGroupName'),
|
|
51
52
|
resourceGroupName: this.node.tryGetContext('resourceGroupName'),
|
|
52
53
|
skipStageForARecords: this.node.tryGetContext('skipStageForARecords'),
|
|
@@ -13,6 +13,7 @@ export interface CommonAzureStackProps extends BaseProps, AzurermProviderConfig
|
|
|
13
13
|
resourcePrefix?: string
|
|
14
14
|
resourceSuffix?: string
|
|
15
15
|
resourceNameOptions?: { [key: string]: AzureResourceNameFormatterProps }
|
|
16
|
+
location?: string
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
export interface AzureRemoteBackendProps extends AzurermBackendConfig {
|
|
@@ -6,7 +6,9 @@ import { ApiManagementApiOperationPolicyConfig } from '@cdktf/provider-azurerm/l
|
|
|
6
6
|
|
|
7
7
|
export interface ApiManagementProps extends ApiManagementConfig {}
|
|
8
8
|
|
|
9
|
-
export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
|
|
9
|
+
export interface ApiManagementBackendProps extends ApiManagementBackendConfig {
|
|
10
|
+
backendUrlPath?: string
|
|
11
|
+
}
|
|
10
12
|
|
|
11
13
|
export interface ApiManagementApiProps extends ApiManagementApiConfig {
|
|
12
14
|
operations: ApiManagementApiOperationConfig[]
|