Skip to content

Commit 69ce9db

Browse files
fix: set viewer_certificate.ssl_support_method to a non-empty value (#208)
* Sets the `viewer_certificate.ssl_support_method` to a non-empty value Co-authored-by: actions-bot <[email protected]>
1 parent cdf1d5c commit 69ce9db

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,7 @@ In general, PRs are welcome. We follow the typical "fork-and-pull" Git workflow.
692692

693693
## Copyright
694694

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

697697

698698

main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,7 +439,7 @@ resource "aws_cloudfront_distribution" "default" {
439439

440440
viewer_certificate {
441441
acm_certificate_arn = var.acm_certificate_arn
442-
ssl_support_method = local.use_default_acm_certificate ? "" : "sni-only"
442+
ssl_support_method = "sni-only"
443443
minimum_protocol_version = local.minimum_protocol_version
444444
cloudfront_default_certificate = local.use_default_acm_certificate
445445
}

0 commit comments

Comments
 (0)