Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,16 @@

All notable changes to this module will be documented in this file.

## [v1.2.2] - 2024-01-30

### Changed

- Update minimum protocol version to `TLSv1.2_2021`

## [v1.2.1] - 2023-10-26

### Changed

- Update WAF module version to v1.1.1
- Resource: `module.waf`
- Variable: `waf_custom_response_body`
Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ resource "aws_cloudfront_distribution" "distribution" {
viewer_certificate {
acm_certificate_arn = local.is_use_cloudfront_cert_viewer ? null : var.cdn_certificate_arn
cloudfront_default_certificate = local.is_use_cloudfront_cert_viewer ? true : false
minimum_protocol_version = local.is_use_cloudfront_cert_viewer ? "TLSv1" : "TLSv1.2_2018"
minimum_protocol_version = local.is_use_cloudfront_cert_viewer ? "TLSv1" : "TLSv1.2_2021"
ssl_support_method = local.is_use_cloudfront_cert_viewer ? null : "sni-only"
}

Expand Down