Skip to content

Commit

Permalink
Edit the Trusted Clusters guide for Cloud
Browse files Browse the repository at this point in the history
See #10633

- Misc style/grammar/clarity tweaks
- Turn the Teleport Node Tunneling Admonition into a Details
  box so it can be invisible for Cloud users. In Cloud, Nodes
  must connect via Node Tunneling.
- Use Tabs components to add Cloud versions of CLI commands
- Only show the static join token method for self-hosted users
  via Tabs
- Use a Details box to show content relevant only for Enterprise
  and Cloud users
- Remove an Admonition that was duplicated in the Troubleshooting
  section
  • Loading branch information
ptgott committed Mar 1, 2022
1 parent eab8fd2 commit df22110
Show file tree
Hide file tree
Showing 2 changed files with 304 additions and 142 deletions.
28 changes: 21 additions & 7 deletions docs/pages/includes/tctl.mdx
Original file line number Diff line number Diff line change
@@ -1,22 +1,36 @@
<Details title="Before you begin: verify connectivity" opened={false}>
<Details
title="Make sure you can connect to Teleport"
scope={["oss", "enterprise"]}
scopeOnly={true}
opened={true}
>

Verify that your Teleport client is connected:
Verify that your Teleport client is connected by running the following on your
Auth Service host:

```code
$ tctl status
# Cluster tele.example.com
# Version (=teleport.version=)
# CA pin sha256:sha-hash-here
```
</Details>
<Details
title="Make sure you can connect to Teleport"
scope={["cloud"]}
scopeOnly={true}
opened={true}
>

<Notice title="Connecting to the cloud" type="note" scope={["cloud"]}>
To try this flow in the cloud, login into your cluster using `tsh`, then use `tctl` remotely:
To connect to Teleport, log in to your cluster using `tsh`, then use `tctl` remotely:

```code
$ tsh login --proxy=myinstance.teleport.sh
$ tsh login --proxy=myinstance.teleport.sh [email protected]
$ tctl status
# Cluster tele.example.com
# Version (=teleport.version=)
# CA pin sha256:sha-hash-here
```
</Notice>

Make sure that you are using the Enterprise edition of `tctl`.
</Details>
Loading

0 comments on commit df22110

Please sign in to comment.