diff --git a/docs/pages/application-access/getting-started.mdx b/docs/pages/application-access/getting-started.mdx index c15afdcab47c8..3ff284c17db74 100644 --- a/docs/pages/application-access/getting-started.mdx +++ b/docs/pages/application-access/getting-started.mdx @@ -121,7 +121,7 @@ Alternatively, log in to the Teleport Web Interface at `https://teleport.example Dive deeper into the topics relevant to your Application Access use-case: -- Learn in more detail about [connecting applications](./guides/connecting-apps.mdx) with Application Access. +- Learn in more detail about [connecting applications](./guides/connecting-apps.mdx) with application access. - Learn about integrating with [JWT tokens](./jwt/introduction.mdx) for auth. - Learn how to use Application Access with [RESTful APIs](./guides/api-access.mdx). - See full configuration and CLI [reference](./reference.mdx). diff --git a/docs/pages/application-access/guides/connecting-apps.mdx b/docs/pages/application-access/guides/connecting-apps.mdx index 57a30b2d9bf15..2280a4dc71a7a 100644 --- a/docs/pages/application-access/guides/connecting-apps.mdx +++ b/docs/pages/application-access/guides/connecting-apps.mdx @@ -112,7 +112,7 @@ $ sudo teleport start \ ``` Note that the `--auth-server` flag must point to the Teleport cluster's proxy -endpoint because the application service always connects back to the cluster over +endpoint because the Application Service always connects back to the cluster over a reverse tunnel. ### Application name diff --git a/docs/pages/database-access/guides/mysql-cloudsql.mdx b/docs/pages/database-access/guides/mysql-cloudsql.mdx index 4fc987f4cfb04..2774beedfd187 100644 --- a/docs/pages/database-access/guides/mysql-cloudsql.mdx +++ b/docs/pages/database-access/guides/mysql-cloudsql.mdx @@ -130,7 +130,7 @@ Install Teleport on the host where you will run the Teleport Database Service: ## Step 4/5. Set up the Teleport Database service -Below is an example of a database service configuration file that proxies +Below is an example of a Database Service configuration file that proxies a single Cloud SQL MySQL database. Save this file as `/etc/teleport.yaml`: diff --git a/docs/pages/includes/install-linux.mdx b/docs/pages/includes/install-linux.mdx index 13a0c0fc23ef3..c78e25250c175 100644 --- a/docs/pages/includes/install-linux.mdx +++ b/docs/pages/includes/install-linux.mdx @@ -55,6 +55,17 @@ Next, use the appropriate commands for your environment to install your package. # $ sudo dnf install teleport ``` + + Amazon Linux 2023 users should utilize the tarball or RPM file to install Teleport. + You can download the matching RPM architecture for your instance + from the [Teleport Downloads page](https://goteleport.com/download) and install with the example command below. + + ```code + # Replace with the architecture type (amd64, arm64,...) + $ rpm -i teleport-(=teleport.version=)-1..rpm + ``` + +