Skip to content

Commit

Permalink
fix: set viewer_certificate.ssl_support_method to a non-empty value (#…
Browse files Browse the repository at this point in the history
…208)

* Sets the `viewer_certificate.ssl_support_method` to a non-empty value

Co-authored-by: actions-bot <[email protected]>
  • Loading branch information
syphernl and actions-bot authored Jan 12, 2022
1 parent cdf1d5c commit 69ce9db
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -692,7 +692,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.

## Copyright

Copyright © 2017-2021 [Cloud Posse, LLC](https://cpco.io/copyright)
Copyright © 2017-2022 [Cloud Posse, LLC](https://cpco.io/copyright)



Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@ resource "aws_cloudfront_distribution" "default" {

viewer_certificate {
acm_certificate_arn = var.acm_certificate_arn
ssl_support_method = local.use_default_acm_certificate ? "" : "sni-only"
ssl_support_method = "sni-only"
minimum_protocol_version = local.minimum_protocol_version
cloudfront_default_certificate = local.use_default_acm_certificate
}
Expand Down

0 comments on commit 69ce9db

Please sign in to comment.