Adding an SSH Key to CircleCI
If deploying to your servers requires SSH access, you will need to add SSH keys to CircleCI.
Overview
There are two reasons to add SSH keys to CircleCI:
- To check out code from version control systems.
- To enable running processes to access other services.
If you are adding an SSH key for the first reason, refer to the GitHub and Bitbucket Integration document.
Otherwise, follow the steps below for the version of CircleCI you are using to add an SSH key to your project.
Note: You may need to add the public key to ~/.ssh/authorized_keys
in order to add SSH keys.
Steps
Note: Since CircleCI cannot decrypt SSH keys, every new key must have an empty passphrase.
CircleCI cloud or server 3.x
-
In a terminal, generate the key with
ssh-keygen -t ed25519 -C "your_email@example.com"
. See Secure Shell documentation for additional details. -
In the CircleCI application, go to your project’s settings by clicking the the Project Settings button (top-right on the Pipelines page of the project).
-
On the Project Settings page, click on SSH Keys (vertical menu on the left).
-
Scroll down to the Additional SSH Keys section.
-
Click the Add SSH Key button.
-
In the Hostname field, enter the key’s associated host (for example,
git.heroku.com
). If you do not specify a hostname, the key will be used for all hosts. -
In the Private Key field, paste the SSH key you are adding.
-
Click the Add SSH Key button.
CircleCI server 2.19.x
-
In a terminal, generate the key with
ssh-keygen -m PEM -t rsa -C "your_email@example.com"
. See the (SSH) Secure Shell documentation web site for additional details. -
In the CircleCI application, go to your project’s settings by clicking the gear icon next to your project.
-
In the Permissions section, click on SSH Permissions.
-
Click the Add SSH Key button.
-
In the Hostname field, enter the key’s associated host (for example, “git.heroku.com”). If you do not specify a hostname, the key will be used for all hosts.
-
In the Private Key field, paste the SSH key you are adding.
-
Click the Add SSH Key button.
Adding SSH Keys to a Job
Even though all CircleCI jobs use ssh-agent
to automatically sign all added SSH keys, you must use the add_ssh_keys
key to actually add keys to a container.
To add a set of SSH keys to a container, use the add_ssh_keys
special step within the appropriate job in your configuration file.
For a self-hosted runner, ensure that you have an ssh-agent
on your system to successfully use the add_ssh_keys
step. The SSH key is written to $HOME/.ssh/id_rsa_<fingerprint>
, where $HOME
is the home directory of the user configured to execute jobs, and <fingerprint>
is the fingerprint of the key. A host entry is also appended to $HOME/.ssh/config
, along with a relevant IdentityFile
option to use the key.
version: 2
jobs:
deploy-job:
steps:
- add_ssh_keys:
fingerprints:
- "SO:ME:FIN:G:ER:PR:IN:T"
Note: All fingerprints in the fingerprints
list must correspond to keys that have been added through the CircleCI application.
Adding multiple keys with blank hostnames
If you need to add multiple SSH keys with blank hostnames to your project, you will need to make some changes to the default SSH configuration provided by CircleCI. In the scenario where you have multiple SSH keys that have access to the same hosts, but are for different purposes the default IdentitiesOnly no
is set causing connections to use ssh-agent. This will always cause the first key to be used, even if that is the incorrect key. If you have added the SSH key to a container, you will need to either set IdentitiesOnly no
in the appropriate block, or you can remove all keys from the ssh-agent for this job using ssh-add -D
, and reading the key added with ssh-add /path/to/key
.
See Also
GitHub and Bitbucket Integration
Help make this document better
This guide, as well as the rest of our docs, are open source and available on GitHub. We welcome your contributions.
- Suggest an edit to this page (please read the contributing guide first).
- To report a problem in the documentation, or to submit feedback and comments, please open an issue on GitHub.
- CircleCI is always seeking ways to improve your experience with our platform. If you would like to share feedback, please join our research community.
Need support?
Our support engineers are available to help with service issues, billing, or account related questions, and can help troubleshoot build configurations. Contact our support engineers by opening a ticket.
You can also visit our support site to find support articles, community forums, and training resources.
CircleCI Documentation by CircleCI is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.