Skip to content

Commit

Permalink
Merge pull request ansible-collections#707 from boutetnico/add-cf-ssl…
Browse files Browse the repository at this point in the history
…-version

cloudfront_distribution: add new security policy version TLSv1.2_2021

SUMMARY

Add new TLSv1.2_2021 security policy for CloudFront viewer connections.

ISSUE TYPE


Feature Pull Request

COMPONENT NAME

cloudfront_distribution
ADDITIONAL INFORMATION


https://aws.amazon.com/about-aws/whats-new/2021/06/amazon-cloudfront-announces-new-tlsv12_2021-security-policy-for-viewer-connections/

Reviewed-by: Alina Buzachis <None>
Reviewed-by: Markus Bergholz <git@osuv.de>
Reviewed-by: None <None>
  • Loading branch information
ansible-zuul[bot] committed Sep 24, 2021
2 parents a55b7a9 + 59deefe commit 85dffb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
minor_changes:
- cloudfront_distribution - add ``TLSv1.2_2021`` security policy for viewer connections (https://github.com/ansible-collections/community.aws/pull/707).
3 changes: 2 additions & 1 deletion plugins/modules/cloudfront_distribution.py
Original file line number Diff line number Diff line change
Expand Up @@ -1591,7 +1591,8 @@ def __init__(self, module):
'TLSv1_2016',
'TLSv1.1_2016',
'TLSv1.2_2018',
'TLSv1.2_2019'
'TLSv1.2_2019',
'TLSv1.2_2021'
])
self.__valid_viewer_certificate_certificate_sources = set([
'cloudfront',
Expand Down

0 comments on commit 85dffb3

Please sign in to comment.