@gradientedge/cdk-utils 8.25.0 → 8.26.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.
@@ -112,7 +112,7 @@ class SSMParameterReader extends cr.AwsCustomResource {
112
112
  Name: `${parameterName}-${scope.props.stage}`,
113
113
  },
114
114
  region,
115
- physicalResourceId: cr.PhysicalResourceId.of(name),
115
+ physicalResourceId: cr.PhysicalResourceId.of(Date.now().toString()),
116
116
  };
117
117
  super(scope, name, {
118
118
  onUpdate: ssmAwsSdkCall,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "8.25.0",
3
+ "version": "8.26.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -98,7 +98,7 @@ export class SSMParameterReader extends cr.AwsCustomResource {
98
98
  Name: `${parameterName}-${scope.props.stage}`,
99
99
  },
100
100
  region,
101
- physicalResourceId: cr.PhysicalResourceId.of(name),
101
+ physicalResourceId: cr.PhysicalResourceId.of(Date.now().toString()),
102
102
  }
103
103
 
104
104
  super(scope, name, {