@gradientedge/cdk-utils 9.16.0 → 9.17.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.
@@ -525,7 +525,7 @@ class IamManager {
525
525
  assumedBy: servicePrincipal ?? new aws_iam_1.ServicePrincipal('appconfig.amazonaws.com'),
526
526
  description: `Role for ${id} AppConfig Secrets`,
527
527
  inlinePolicies: { policy },
528
- roleName: scope.resourceNameFormatter.format(`${id}-app-secrets`, scope.props.resourceNameOptions?.iam),
528
+ roleName: scope.resourceNameFormatter.format(`${id}-config`, scope.props.resourceNameOptions?.iam),
529
529
  });
530
530
  (0, utils_1.createCfnOutput)(`${id}Arn`, scope, role.roleArn);
531
531
  (0, utils_1.createCfnOutput)(`${id}Name`, scope, role.roleName);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "9.16.0",
3
+ "version": "9.17.0",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -608,7 +608,7 @@ export class IamManager {
608
608
  assumedBy: servicePrincipal ?? new ServicePrincipal('appconfig.amazonaws.com'),
609
609
  description: `Role for ${id} AppConfig Secrets`,
610
610
  inlinePolicies: { policy },
611
- roleName: scope.resourceNameFormatter.format(`${id}-app-secrets`, scope.props.resourceNameOptions?.iam),
611
+ roleName: scope.resourceNameFormatter.format(`${id}-config`, scope.props.resourceNameOptions?.iam),
612
612
  })
613
613
 
614
614
  createCfnOutput(`${id}Arn`, scope, role.roleArn)