Skip to content

Commit

Permalink
[AWS cloudfront_distribution] Update minimum protocol versions (#38644)…
Browse files Browse the repository at this point in the history
… (#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 6b97034)
  • Loading branch information
willthames authored and s-hertel committed Apr 19, 2018
1 parent 16f48b5 commit 2b98513
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion lib/ansible/modules/cloud/amazon/cloudfront_distribution.py
Expand Up @@ -1319,7 +1319,10 @@ def __init__(self, module):
])
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',
Expand Down

0 comments on commit 2b98513

Please sign in to comment.