[AWS cloudfront_distribution] Update minimum protocol versions (#38644) (#38990)

As per docs, the current set of values is

```
'SSLv3'|'TLSv1'|'TLSv1_2016'|'TLSv1.1_2016'|'TLSv1.2_2018'
```

Fixes #38642

(cherry picked from commit 6b970348b1)
pull/39086/head
Will Thames 7 years ago committed by Sloane Hertel
parent 16f48b539f
commit 2b985137d7

@ -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',

Loading…
Cancel
Save