Skip to content

Commit

Permalink
Merge pull request #514 from AndreKurait/S3BucketNameFix
Browse files Browse the repository at this point in the history
Make globally unique default bucket name
  • Loading branch information
AndreKurait authored Feb 19, 2024
2 parents 7dac332 + 567d3a8 commit 591a7bb
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 591a7bb

Please sign in to comment.