-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Web: replace side docs with sliding side panel
- Loading branch information
Showing
8 changed files
with
371 additions
and
159 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
/** | ||
* Teleport | ||
* Copyright (C) 2025 Gravitational, Inc. | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
import Box from 'design/Box'; | ||
import { Mark } from 'design/Mark'; | ||
|
||
import { | ||
InfoExternalTextLink, | ||
InfoParagraph, | ||
InfoTitle, | ||
ReferenceLinks, | ||
} from 'teleport/components/SlidingSidePanel/InfoGuideSidePanel'; | ||
|
||
const InfoGuideReferenceLinks = { | ||
Bots: { | ||
title: 'What are Bots', | ||
href: 'https://goteleport.com/docs/enroll-resources/machine-id/introduction/#bots', | ||
}, | ||
TBots: { | ||
title: 'What is tbot', | ||
href: 'https://goteleport.com/docs/reference/architecture/machine-id-architecture/#tbot', | ||
}, | ||
AccessResources: { | ||
title: 'Access your Infrastructure with Machine ID', | ||
href: 'https://goteleport.com/docs/enroll-resources/machine-id/access-guides/', | ||
}, | ||
}; | ||
|
||
export const InfoGuide = () => ( | ||
<Box> | ||
<InfoTitle>Bots</InfoTitle> | ||
<InfoParagraph> | ||
<InfoExternalTextLink | ||
target="_blank" | ||
href={InfoGuideReferenceLinks.Bots.href} | ||
> | ||
Bots | ||
</InfoExternalTextLink>{' '} | ||
are identities a machine can use to authenticate to the Teleport cluster. | ||
This allows processes like automated tests, | ||
Infrastructure-as-Code/provisioning tools like Terraform or Ansible and | ||
scripts to{' '} | ||
<InfoExternalTextLink | ||
target="_blank" | ||
href={InfoGuideReferenceLinks.AccessResources.href} | ||
> | ||
access resources | ||
</InfoExternalTextLink>{' '} | ||
protected by the Teleport proxy. | ||
</InfoParagraph> | ||
<InfoParagraph> | ||
Bots use the{' '} | ||
<InfoExternalTextLink | ||
target="_blank" | ||
href={InfoGuideReferenceLinks.TBots.href} | ||
> | ||
tbot | ||
</InfoExternalTextLink>{' '} | ||
binary rather than the <Mark>teleport</Mark> binary used for other agents.{' '} | ||
<Mark>tbot</Mark> outputs identify files such as certificates and | ||
Kubernetes configuration files for processes to use for authentication. | ||
</InfoParagraph> | ||
<ReferenceLinks links={Object.values(InfoGuideReferenceLinks)} /> | ||
</Box> | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.