Skip to content

Commit 403a11a

Browse files
authored
docs: Add TLSv1.1 and TLSv1.2 for origin_ssl_protocols in examples (#51)
1 parent 9fbf9e4 commit 403a11a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ module "cdn" {
3535
http_port = 80
3636
https_port = 443
3737
origin_protocol_policy = "match-viewer"
38-
origin_ssl_protocols = ["TLSv1"]
38+
origin_ssl_protocols = ["TLSv1", "TLSv1.1", "TLSv1.2"]
3939
}
4040
}
4141

examples/complete/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ module "cloudfront" {
4545
http_port = 80
4646
https_port = 443
4747
origin_protocol_policy = "match-viewer"
48-
origin_ssl_protocols = ["TLSv1"]
48+
origin_ssl_protocols = ["TLSv1", "TLSv1.1", "TLSv1.2"]
4949
}
5050

5151
custom_header = [

0 commit comments

Comments
 (0)