Skip to content

Commit

Permalink
Fix cors_allowed_origins (#8)
Browse files Browse the repository at this point in the history
  • Loading branch information
osterman authored and const-bon committed Sep 22, 2017
1 parent ed32f43 commit 9ef6df5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource "aws_s3_bucket" "default" {
cors_rule {
allowed_headers = "${var.cors_allowed_headers}"
allowed_methods = "${var.cors_allowed_methods}"
allowed_origins = "${var.cors_allowed_origins}"
allowed_origins = ["${var.cors_allowed_origins}"]
expose_headers = "${var.cors_expose_headers}"
max_age_seconds = "${var.cors_max_age_seconds}"
}
Expand Down

0 comments on commit 9ef6df5

Please sign in to comment.