From e60446642e5c0dc6f933b06225340d74635dad4d Mon Sep 17 00:00:00 2001 From: Frank Klaassen <639906+syphernl@users.noreply.github.com> Date: Tue, 11 Jan 2022 14:14:46 +0100 Subject: [PATCH 1/2] fix: set ssl_support_method to value --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 97c91c61..2310fbad 100644 --- a/main.tf +++ b/main.tf @@ -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 } From bb27c8604457095267e9eda47523a742e5ba7f7e Mon Sep 17 00:00:00 2001 From: actions-bot <58130806+actions-bot@users.noreply.github.com> Date: Wed, 12 Jan 2022 17:11:38 +0000 Subject: [PATCH 2/2] Updated README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8488c664..8504bfb3 100644 --- a/README.md +++ b/README.md @@ -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)