@gradientedge/cdk-utils 6.10.1 → 6.10.2

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.
@@ -214,7 +214,7 @@ class S3Manager {
214
214
  throw `Folder unspecified for ${id}`;
215
215
  }
216
216
  folders.forEach(folder => {
217
- new s3deploy.BucketDeployment(scope, `${id}-${folder}`, {
217
+ new s3deploy.BucketDeployment(scope, `${folder}`, {
218
218
  destinationBucket: bucket,
219
219
  destinationKeyPrefix: folder,
220
220
  sources: [s3deploy.Source.data('README.md', `This is the ${folder} folder for ${id}`)],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gradientedge/cdk-utils",
3
- "version": "6.10.1",
3
+ "version": "6.10.2",
4
4
  "description": "Utilities for AWS CDK provisioning",
5
5
  "main": "dist/index.js",
6
6
  "engines": {
@@ -214,7 +214,7 @@ export class S3Manager {
214
214
  }
215
215
 
216
216
  folders.forEach(folder => {
217
- new s3deploy.BucketDeployment(scope, `${id}-${folder}`, {
217
+ new s3deploy.BucketDeployment(scope, `${folder}`, {
218
218
  destinationBucket: bucket,
219
219
  destinationKeyPrefix: folder,
220
220
  sources: [s3deploy.Source.data('README.md', `This is the ${folder} folder for ${id}`)],