From 76f4e3d1b2ba11be41a5a58354c89fccab8f69b8 Mon Sep 17 00:00:00 2001 From: AJ Date: Fri, 9 Aug 2024 12:56:52 -0400 Subject: [PATCH] wording improvements --- src/.vuepress/sidebar/en.ts | 12 ++++++------ .../amazon-msk/secure-public-access/overview.md | 10 ++++++---- 2 files changed, 12 insertions(+), 10 deletions(-) diff --git a/src/.vuepress/sidebar/en.ts b/src/.vuepress/sidebar/en.ts index 9bdd3733..c6b7df63 100644 --- a/src/.vuepress/sidebar/en.ts +++ b/src/.vuepress/sidebar/en.ts @@ -112,16 +112,17 @@ export const enSidebar = sidebar({ link: "how-tos/amazon-msk/secure-public-access/overview.md", children: [ { - text: "Overview", + text: "Deployment Options", link: "overview.md", }, { - text: "Terraform Deploy", + text: "Terraform", link: "https://github.com/aklivity/zilla-plus-aws-templates/tree/main/amazon-msk/cdktf/secure-public-access", }, { - text: "CloudFormation Deploy", - collapsible: false, + text: "CloudFormation", + collapsible: true, + link: "production.md", children: [ { text: "with SASL/SCRAM", @@ -135,9 +136,8 @@ export const enSidebar = sidebar({ text: "with Unauthorized access", link: "development.md", }, - ] + ], }, - ], }, { diff --git a/src/solutions/how-tos/amazon-msk/secure-public-access/overview.md b/src/solutions/how-tos/amazon-msk/secure-public-access/overview.md index 9ad47e5a..ac5a1faa 100644 --- a/src/solutions/how-tos/amazon-msk/secure-public-access/overview.md +++ b/src/solutions/how-tos/amazon-msk/secure-public-access/overview.md @@ -20,14 +20,16 @@ The proxy can securely expose any MSK cluster with these access opt Follow the [Secure Public Access with Terraform](https://github.com/aklivity/zilla-plus-aws-templates/tree/main/amazon-msk/cdktf/secure-public-access) guide to generated or deploy a custom Terraform template using [CDKTF](https://developer.hashicorp.com/terraform/cdktf). This Terraform script can be configured to deploy `SASL/SCRAM authentication`, `Mutual TLS (mTLS) authentication` or `Unauthorized access` to setup connectivity to your MSK cluster with a wildcard DNS pattern. -## SASL/SCRAM authentication with CloudFormation +## Deployment with CloudFormation + +### SASL/SCRAM authentication Follow the [Secure Public Access via SASL/SCRAM authentication](./production.md) guide to setup connectivity to your MSK cluster using a globally trusted TLS server certificate with a wildcard DNS pattern `*.example.aklivity.io` to illustrate the steps. -## Mutual TLS (mTLS) authentication with CloudFormation +### Mutual TLS (mTLS) authentication -Follow the [Secure Public Access via mTLS](./production-mutual-tls.md) guide to setup connectivity to your MSK cluster using a globally trusted TLS server certificate with a wildcard DNS pattern `*.example.aklivity.io` to illustrate the steps. +Follow the [Secure Public Access via mTLS](./production-mutual-tls.md) guide to setup connectivity to your MSK cluster using a globally trusted TLS server certificate with a wildcard DNS pattern `*.example.aklivity.io` to illustrate the steps. -## Unauthorized access with CloudFormation +### Unauthorized access Follow the [Secure Public Access via Unauthorized access](./development.md) guide to setup connectivity to your MSK cluster using a locally trusted TLS server certificate with the example wildcard DNS pattern `*.aklivity.example.com`.