Skip to content

Commit

Permalink
Merge pull request #419 from SVendittelli/feat/image-hosting
Browse files Browse the repository at this point in the history
fix(terraform): make s3 bucket id unique
  • Loading branch information
SVendittelli authored Aug 25, 2023
2 parents 4af0245 + 370785b commit d5178a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/aws.tf
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ resource "aws_s3_bucket_public_access_block" "www" {
}

resource "aws_s3_bucket" "images" {
bucket = "images"
bucket = "images.${var.site_domain}"

tags = {
Name = "Images"
Expand Down

0 comments on commit d5178a7

Please sign in to comment.