@gradientedge/cdk-utils-azure 2.39.0 → 2.40.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/common/stack.js +1 -1
- package/package.json +1 -1
package/dist/src/common/stack.js
CHANGED
|
@@ -160,7 +160,7 @@ export class CommonAzureStack extends ComponentResource {
|
|
|
160
160
|
determineStageRegionContexts() {
|
|
161
161
|
const debug = this.config.getBoolean('debug');
|
|
162
162
|
const stage = this.config.get('stage');
|
|
163
|
-
const location = this.config.get('location');
|
|
163
|
+
const location = this.config.get('location') ?? process.env.LOCATION;
|
|
164
164
|
const stageRegionContextPath = this.config.get('stageRegionContextPath');
|
|
165
165
|
if (!stage || !location || !stageRegionContextPath) {
|
|
166
166
|
if (debug)
|