mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-04-04 17:53:10 +00:00
[AWS cloudfront_distribution] Update minimum protocol versions (#38644)
As per docs, the current set of values is ``` 'SSLv3'|'TLSv1'|'TLSv1_2016'|'TLSv1.1_2016'|'TLSv1.2_2018' ``` Fixes #38642
This commit is contained in:
committed by
Sloane Hertel
parent
ce8c336d52
commit
6b970348b1
@@ -1319,7 +1319,10 @@ class CloudFrontValidationManager(object):
|
||||
])
|
||||
self.__valid_viewer_certificate_minimum_protocol_versions = set([
|
||||
'SSLv3',
|
||||
'TLSv1'
|
||||
'TLSv1',
|
||||
'TLSv1_2016',
|
||||
'TLSv1.1_2016',
|
||||
'TLSv1.2_2018'
|
||||
])
|
||||
self.__valid_viewer_certificate_certificate_sources = set([
|
||||
'cloudfront',
|
||||
|
||||
Reference in New Issue
Block a user