-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extra step to ssh key instructions (#954)
- Loading branch information
1 parent
9ba20c9
commit 3d1ac0c
Showing
1 changed file
with
17 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,13 +55,26 @@ export const AddSSHKeyForm = ({ | |
{ text: "~/.ssh/*.pub", className: "text-white" }, | ||
]} | ||
/> | ||
<p className="text-gray-600 mt-2"> | ||
If you want to generate a new SSH key or want to learn how Aptible | ||
uses your key,{" "} | ||
</div> | ||
|
||
<div className="my-4"> | ||
<h4 className={tokens.type.h4}> | ||
If you don’t already have an SSH Public Key, generate a new SSH key | ||
using this command | ||
</h4> | ||
<p className="text-gray-600 mb-2"> | ||
Need help generating a new key?{" "} | ||
<a href="https://www.aptible.com/docs/public-key-authentication"> | ||
view our docs | ||
View our docs | ||
</a> | ||
</p> | ||
<PreCode | ||
allowCopy | ||
segments={[ | ||
{ text: "ssh-keygen -t ed25519 -C", className: "text-lime" }, | ||
{ text: '"[email protected]"', className: "text-white" }, | ||
]} | ||
/> | ||
</div> | ||
|
||
<div className="mt-2"> | ||
|