@gradientedge/cdk-utils-azure 2.52.0 → 2.52.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.
@@ -44,7 +44,7 @@ export class CommonAzureStack extends ComponentResource {
44
44
  this.props = this.determineConstructProps(props);
45
45
  /* register tag transformation for automatic tag application */
46
46
  if (this.props.defaultTags) {
47
- registerTagTransformation(this.props.defaultTags);
47
+ registerTagTransformation(this.props.defaultTags, this.props.tagsToIgnore ?? []);
48
48
  }
49
49
  this.createConstruct();
50
50
  this.registerOutputs();
@@ -52,6 +52,8 @@ export interface CommonAzureStackProps extends BaseProps {
52
52
  defaultTags?: {
53
53
  [key: string]: string;
54
54
  };
55
+ /** Tag keys to ignore in Pulumi lifecycle management (e.g. tags set externally like 'CreatedOn') */
56
+ tagsToIgnore?: string[];
55
57
  /** Shared Log Analytics Workspace lookup arguments for diagnostic logging */
56
58
  commonLogAnalyticsWorkspace?: GetWorkspaceOutputArgs;
57
59
  /** Shared Application Insights component lookup arguments for telemetry */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils-azure",
3
- "version": "2.52.0",
3
+ "version": "2.52.1",
4
4
  "description": "Azure Pulumi utilities for @gradientedge/cdk-utils",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",