Skip to content

Commit

Permalink
Add missing https:// shcheme to S3 bucket allowed origin
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerHendrickson committed Feb 7, 2024
1 parent 4cf3d15 commit 890fcc0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/functions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ module "reporting_data_bucket" {
cors_configuration = [
{
allowed_methods = ["GET", "HEAD", "POST", "PUT"]
allowed_origins = [var.website_domain_name]
allowed_origins = ["https://${var.website_domain_name}"]
allowed_headers = ["*"]
expose_headers = [
"Content-Disposition",
Expand Down

0 comments on commit 890fcc0

Please sign in to comment.