Skip to content

Commit

Permalink
fix: replace unallowed caractere to the s3 store for deployment (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
floross committed Dec 1, 2021
1 parent ce54446 commit 29f6776
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export class DeploymentStoreComponent extends AwsComponent<ConstructOptions> {
protected createS3Bucket() {
return new S3Bucket(this, 's3', {
provider: this.provider,
bucketPrefix: this.getResourceName('', 37),
bucketPrefix: this.getResourceName('', 37).replace(/_/g, '-'),
acl: 'private',
forceDestroy: true,
versioning: [{ enabled: false }],
Expand Down

0 comments on commit 29f6776

Please sign in to comment.