Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs: ssh-keys.md #9151

Merged
merged 1 commit into from
Aug 7, 2024
Merged
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
4 changes: 2 additions & 2 deletions source/content/ssh-keys.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Pantheon supports ECDSA and RSA SSH keys. Currently, we do not support `ed25519`
1. Open your terminal and enter the following command to generate a key:

```bash{promptUser: user}
ssh-keygen -t rsa
ssh-keygen -t rsa -m PEM
```

Do not edit the default location of `~/.ssh/id_rsa` unless you have a reason to change it. If the command says the key already exists, you can either overwrite it, or continue to the next step with your existing key.
Expand Down Expand Up @@ -79,7 +79,7 @@ Pantheon supports ECDSA and RSA SSH keys. Currently, we do not support `ed25519`
1. Open your terminal and enter the following command to generate a key. This command works for Windows 10:

```bash{promptUser: winshell}
ssh-keygen -t rsa
ssh-keygen -t rsa -m PEM
```

Do not edit the default location of `~/.ssh/id_rsa` unless you have a reason to change it. If the command says the key already exists, you can either overwrite it, or continue to the next step with your existing key.
Expand Down
Loading