@gradientedge/cdk-utils 9.17.0 → 9.18.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.
@@ -49,7 +49,7 @@ class ApplicationConfiguration extends common_1.CommonConstruct {
49
49
  this.appConfigDeploymentStrategy = new aws_appconfig_1.CfnDeploymentStrategy(this, `${this.id}-ac-deployment-strategy`, {
50
50
  deploymentDurationInMinutes: this.props.appConfig.deploymentStrategy.deploymentDurationInMinutes,
51
51
  growthFactor: this.props.appConfig.deploymentStrategy.growthFactor,
52
- name: this.resourceNameFormatter.format(this.props.appConfig.deploymentStrategy.name),
52
+ name: this.resourceNameFormatter.format(this.props.appConfig.deploymentStrategy.name, this.props.resourceNameOptions?.appconfig),
53
53
  replicateTo: this.props.appConfig.deploymentStrategy.replicateTo,
54
54
  });
55
55
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.17.0",
3
+ "version": "9.18.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -79,7 +79,10 @@ export class ApplicationConfiguration extends CommonConstruct {
79
79
  this.appConfigDeploymentStrategy = new CfnDeploymentStrategy(this, `${this.id}-ac-deployment-strategy`, {
80
80
  deploymentDurationInMinutes: this.props.appConfig.deploymentStrategy.deploymentDurationInMinutes,
81
81
  growthFactor: this.props.appConfig.deploymentStrategy.growthFactor,
82
- name: this.resourceNameFormatter.format(this.props.appConfig.deploymentStrategy.name),
82
+ name: this.resourceNameFormatter.format(
83
+ this.props.appConfig.deploymentStrategy.name,
84
+ this.props.resourceNameOptions?.appconfig
85
+ ),
83
86
  replicateTo: this.props.appConfig.deploymentStrategy.replicateTo,
84
87
  })
85
88
  }