From cd2127f6922a661637c5712207caf436f2509221 Mon Sep 17 00:00:00 2001
From: Daniel Randall <10566468+dannyrandall@users.noreply.github.com>
Date: Wed, 12 Oct 2022 08:18:01 -0700
Subject: [PATCH] docs: correct cdn.terminate_tls field
---
site/content/blogs/release-v122.en.md | 2 +-
site/content/docs/developing/content-delivery.en.md | 2 +-
site/content/docs/manifest/environment.en.md | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/site/content/blogs/release-v122.en.md b/site/content/blogs/release-v122.en.md
index 5faf972ee93..49ee5864443 100644
--- a/site/content/blogs/release-v122.en.md
+++ b/site/content/blogs/release-v122.en.md
@@ -110,7 +110,7 @@ You can now configure your env manifest to have CloudFront terminate TLS for you
```yaml
cdn:
- tls_termination: true
+ terminate_tls: true
```
The configuration above uses CloudFront for TLS termination, which means the traffic from `CF → ALB → ECS` will be HTTP only. This brings faster TLS termination and shorter page loading for viewers, since the CloudFront edges are usually geographically closer to them.
diff --git a/site/content/docs/developing/content-delivery.en.md b/site/content/docs/developing/content-delivery.en.md
index 0d526c14f67..a85e68b5234 100644
--- a/site/content/docs/developing/content-delivery.en.md
+++ b/site/content/docs/developing/content-delivery.en.md
@@ -67,7 +67,7 @@ You can optionally use CloudFront for TLS termination by configuring the env man
```yaml
cdn:
- tls_termination: true
+ terminate_tls: true
```
And traffic from `CloudFront → Application Load Balancer (ALB) → ECS` will be HTTP only. This brings the benefit of terminating TLS at a geographically closer endpoint to the end user for faster TLS handshakes.
diff --git a/site/content/docs/manifest/environment.en.md b/site/content/docs/manifest/environment.en.md
index af772fcd20d..e16cd3b3e7e 100644
--- a/site/content/docs/manifest/environment.en.md
+++ b/site/content/docs/manifest/environment.en.md
@@ -211,7 +211,7 @@ cdn:
certificate: "arn:aws:acm:us-east-1:1234567890:certificate/e5a6e114-b022-45b1-9339-38fbfd6db3e2"
```
-cdn.`tls_termination` Boolean
+cdn.`terminate_tls` Boolean
Enable TLS termination for CloudFront.