@gradientedge/cdk-utils 9.42.0 → 9.43.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.
- package/dist/src/lib/azure/common/index.d.ts +1 -0
- package/dist/src/lib/azure/common/index.js +1 -0
- 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/package.json +1 -1
- package/src/lib/azure/common/index.ts +1 -0
- package/src/lib/azure/common/stack.ts +1 -0
- package/src/lib/azure/common/types.ts +1 -0
|
@@ -16,5 +16,6 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
17
|
__exportStar(require("./constants"), exports);
|
|
18
18
|
__exportStar(require("./construct"), exports);
|
|
19
|
+
__exportStar(require("./resource-name-formatter"), exports);
|
|
19
20
|
__exportStar(require("./stack"), exports);
|
|
20
21
|
__exportStar(require("./types"), exports);
|
|
@@ -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;
|
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 {
|