Skip to content

Commit

Permalink
Make globally unique default bucket name
Browse files Browse the repository at this point in the history
Signed-off-by: Andre Kurait <[email protected]>
  • Loading branch information
AndreKurait committed Feb 19, 2024
1 parent 7dac332 commit 567d3a8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export class MigrationAssistanceStack extends Stack {
});

const artifactBucket = new Bucket(this, 'migrationArtifactsS3', {
bucketName: `migration-artifacts-${props.stage}-${this.region}`,
bucketName: `migration-artifacts-${this.account}-${props.stage}-${this.region}`,
encryption: BucketEncryption.S3_MANAGED,
enforceSSL: true
});
Expand Down

0 comments on commit 567d3a8

Please sign in to comment.