Skip to content

Commit

Permalink
Respond to PR feedback
Browse files Browse the repository at this point in the history
Restore code snippets so users can paste them while reminding
users to adjust the code.
  • Loading branch information
ptgott committed Feb 24, 2022
1 parent 0710d53 commit 075784b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docs/pages/kubernetes-access/getting-started/cluster.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ to create a public IP for Teleport.
</TabItem>
</Tabs>

You will also need to create a DNS A record for `tele.example.com` so clients can verify the TLS certificate of your Teleport hosts.
You will also need to create a DNS A record for `tele.example.com` so clients can verify the TLS certificate of your Teleport hosts. Adjust the following commands for your environment.

<Details title="Using Application Access?">
(!docs/pages/includes/dns-app-access.mdx!)
Expand All @@ -153,6 +153,7 @@ You will also need to create a DNS A record for `tele.example.com` so clients ca
$ gcloud dns record-sets transaction start --zone="${MYZONE?}"
$ gcloud dns record-sets transaction add ${MYIP?} --name="${MYDNS?}" --ttl="30" --type="A" --zone="${MYZONE?}"
$ gcloud dns record-sets transaction add ${MYIP?} --name="*.${MYDNS?}" --ttl="30" --type="A" --zone="${MYZONE?}"
$ gcloud dns record-sets transaction describe --zone="${MYZONE?}"
$ gcloud dns record-sets transaction execute --zone="${MYZONE?}"
```
Expand Down

0 comments on commit 075784b

Please sign in to comment.