Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added docs/img/cloud/security-business-contacts.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
33 changes: 33 additions & 0 deletions docs/pages/cloud-faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -320,3 +320,36 @@ codes](../img/cloud/recovery-codes.png)
Save the recovery codes into a safe location, such as your organization's
password manager. You can use these codes to reset your account if you lose
your password or multi-factor authentication credentials.

### How do I update my security and business contacts?

Teleport Cloud users can configure up to 3 security contacts and 3 business contacts for their cluster. It's important to
keep these up to date so that we always know who to notify of important updates and alerts.

To do this, log in to your Teleport Cloud account with the email address of the user that created the initial Cloud tenant. Open
the user dropdown menu on the top right of the navigation bar, and select "Help & Support," then scroll down until you see the contacts sections.
Once you add a contact, they will receive an invitation email which they must accept within 14 days.

![Web UI view showing security and business contacts options](../img/cloud/security-business-contacts.png)

If you don't see the contacts lists on the Help & Support page, ensure that your user has the required permissions to see and update contacts. You
can also create a separate role that grants these permissions and assign it to your user and any other desired users:

```yaml
version: v6
kind: role
metadata:
description: Edit Contacts
name: contact-editor
spec:
allow:
rules:
- resources:
- contact
verbs:
- list
- create
- read
- update
- delete
```
18 changes: 16 additions & 2 deletions docs/pages/faq.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ title: Teleport FAQ
description: Frequently Asked Questions About Using Teleport
h1: Teleport FAQ
tags:
- faq
- platform-wide
- faq
- platform-wide
---

This page includes answers to frequently asked questions about setting up,
Expand Down Expand Up @@ -207,3 +207,17 @@ editions of Teleport.
(!docs/pages/includes/teleport-connect-telemetry.mdx!)

If you no longer want to send usage data, see [disabling telemetry](./connect-your-client/teleport-connect.mdx#disabling-telemetry).

### How do I update my security and business contacts?

Teleport Enterprise Self-Hosted users can configure up to 3 security contacts and 3 business contacts for their cluster. It's important to
keep these up to date so that we always know who to notify of important updates and alerts.

To do this, log in to your Teleport License dashboard with the email address of the user that created the dashboard initially. Open
the user dropdown menu on the top right of the navigation bar, and select "Help & Support," then scroll down until you see the contacts sections.
Once you add a contact, they will receive an invitation email which they must accept within 14 days.

![Web UI view showing security and business contacts options](../img/cloud/security-business-contacts.png)

If you don't see the contacts lists on the Help & Support page, ensure that you are logged into the Teleport License dashboard and not your self-hosted cluster,
and ensure that your user has the `dashboard-admin` role. Users with the `dashboard-user` role cannot edit contacts.
Loading