@gradientedge/cdk-utils-azure 2.13.0 → 2.15.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.
@@ -9,7 +9,12 @@ export var AzureRemoteBackend;
9
9
  * List of Azure resources that excludes tags
10
10
  */
11
11
  /** @category Constant */
12
- export const RESOURCES_TO_EXCLUDE_TAGS = new Set(['ApiManagementNamedValue', 'Application', 'ServicePrincipal']);
12
+ export const RESOURCES_TO_EXCLUDE_TAGS = new Set([
13
+ 'ApiManagementNamedValue',
14
+ 'Application',
15
+ 'ServicePrincipal',
16
+ 'StackReference',
17
+ ]);
13
18
  /**
14
19
  * @see https://learn.microsoft.com/en-us/azure/reliability/regions-list?tabs=all
15
20
  */
@@ -85,6 +85,7 @@ export class CommonAzureConstruct extends ComponentResource {
85
85
  resourceGroupName: this.props.resourceGroupName ?? this.id,
86
86
  location: this.props.location,
87
87
  });
88
+ this.props.resourceGroupName = this.resourceNameFormatter.format(this.props.resourceGroupName ?? this.id);
88
89
  this.registerOutputs({
89
90
  resourceGroupId: this.resourceGroup.id,
90
91
  resourceGroupName: this.resourceGroup.name,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils-azure",
3
- "version": "2.13.0",
3
+ "version": "2.15.0",
4
4
  "description": "Azure Pulumi utilities for @gradientedge/cdk-utils",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",