title | intro | redirect_from | versions | topics | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Managing deploy keys |
Learn different ways to manage SSH keys on your servers when you automate deployment scripts and which way is best for you. |
|
|
|
You can manage SSH keys on your servers when automating deployment scripts using SSH agent forwarding, HTTPS with OAuth tokens, deploy keys, or machine users.
In many cases, especially in the beginning of a project, SSH agent forwarding is the quickest and simplest method to use. Agent forwarding uses the same SSH keys that your local development computer uses.
- You do not have to generate or keep track of any new keys.
- There is no key management; users have the same permissions on the server that they do locally.
- No keys are stored on the server, so in case the server is compromised, you don't need to hunt down and remove the compromised keys.
- Users must SSH in to deploy; automated deploy processes can't be used.
- SSH agent forwarding can be troublesome to run for Windows users.
- Turn on agent forwarding locally. See our guide on SSH agent forwarding for more information.
- Set your deploy scripts to use agent forwarding. For example, on a bash script, enabling agent forwarding would look something like this:
ssh -A serverA 'bash -s' < deploy.sh
If you don't want to use SSH keys, you can use HTTPS with OAuth tokens.
- Anyone with access to the server can deploy the repository.
- Users don't have to change their local SSH settings.
- Multiple tokens (one for each user) are not needed; one token per server is enough.
- A token can be revoked at any time, turning it essentially into a one-use password. {% ifversion ghes %}
- Generating new tokens can be easily scripted using the OAuth API. {% endif %}
- You must make sure that you configure your token with the correct access scopes.
- Tokens are essentially passwords, and must be protected the same way.
See our guide on creating a {% data variables.product.pat_generic %}.
{% data reusables.repositories.deploy-keys %}
{% data reusables.repositories.deploy-keys-write-access %}
For enhanced security and fine-grained control over repository access and permissions, we recommend using a GitHub App instead. See AUTOTITLE.
- Anyone with access to the repository and server has the ability to deploy the project.
- Users don't have to change their local SSH settings.
- Deploy keys are read-only by default, but you can give them write access when adding them to a repository.
- Deploy keys only grant access to a single repository. More complex projects may have many repositories to pull to the same server.
- Deploy keys are usually not protected by a passphrase, making the key easily accessible if the server is compromised.
- Deploy keys are credentials that don't have an expiry date.
- Deploy keys aren't linked directly to organization membership. If the user who created the deploy key is removed from the repository, the deploy key will still be active as it isn't tied to the specific user, but rather to the repository.
{% ifversion deploy-keys-enterprise-org-policy %}
[!NOTE] If your organization is owned by an enterprise, and your enterprise owner has restricted the use of deploy keys in repositories, then you cannot override the policy in your organization to create a deploy key. For more information, see AUTOTITLE. {% endif %}
- Run the
ssh-keygen
procedure on your server, and remember where you save the generated public and private rsa key pair. {% data reusables.repositories.navigate-to-repo %} {% data reusables.repositories.sidebar-settings %} - In the sidebar, click Deploy Keys.
- Click Add deploy key.
- In the "Title" field, provide a title.
- In the "Key" field, paste your public key.
- Select Allow write access if you want this key to have write access to the repository. A deploy key with write access lets a deployment push to the repository.
- Click Add key.
You can also use the REST API to create deploy keys. For more information, see AUTOTITLE.
If you use multiple repositories on one server, you will need to generate a dedicated key pair for each one. You can't reuse a deploy key for multiple repositories.
In the server's SSH configuration file (usually ~/.ssh/config
), add an alias entry for each repository. For example:
Host {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}-repo-0
Hostname {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}
IdentityFile=/home/user/.ssh/repo-0_deploy_key
Host {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}-repo-1
Hostname {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}
IdentityFile=/home/user/.ssh/repo-1_deploy_key
Host {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}-repo-0
- The repository's alias.Hostname {% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}
- Configures the hostname to use with the alias.IdentityFile=/home/user/.ssh/repo-0_deploy_key
- Assigns a private key to the alias.
You can then use the hostname's alias to interact with the repository using SSH, which will use the unique deploy key assigned to that alias. For example:
git clone git@{% ifversion fpt or ghec %}github.com{% else %}my-GHE-hostname.com{% endif %}-repo-1:OWNER/repo-1.git
If your server needs to access repositories across one or more organizations, you can use a {% data variables.product.prodname_github_app %} to define the access you need, and then generate tightly-scoped, installation access tokens from that {% data variables.product.prodname_github_app %}. The installation access tokens can be scoped to single or multiple repositories, and can have fine-grained permissions. For example, you can generate a token with read-only access to a repository's contents.
Since {% data variables.product.prodname_github_apps %} are a first class actor on {% data variables.product.github %}, the installation access tokens are decoupled from any {% data variables.product.github %} user, which makes them comparable to "service tokens". Additionally, installation access tokens have dedicated rate limits that scale with the size of the organizations that they act upon. For more information, see Rate limits for {% data variables.product.prodname_github_apps %}.
- Tightly-scoped tokens with well-defined permission sets and expiration times (1 hour, or less if revoked manually using the API)
- Dedicated rate limits that grow with your organization
- Decoupled from {% data variables.product.prodname_dotcom %} user identities, so they do not consume any {% ifversion enterprise-licensing-language %}licenses{% else %}licensed seats{% endif %}
- Never granted a password, so cannot be directly signed in to
- Additional setup is needed to create the {% data variables.product.prodname_github_app %}.
- Installation access tokens expire after 1 hour, and so need to be re-generated, typically on-demand using code.
- Determine if your {% data variables.product.prodname_github_app %} should be public or private. If your {% data variables.product.prodname_github_app %} will only act on repositories within your organization, you likely want it private.
- Determine the permissions your {% data variables.product.prodname_github_app %} requires, such as read-only access to repository contents.
- Create your {% data variables.product.prodname_github_app %} via your organization's settings page. For more information, see Creating a {% data variables.product.prodname_github_app %}.
- Note your {% data variables.product.prodname_github_app %}
id
. - Generate and download your {% data variables.product.prodname_github_app %}'s private key, and store this safely. For more information, see Generating a private key.
- Install your {% data variables.product.prodname_github_app %} on the repositories it needs to act upon, optionally you may install the {% data variables.product.prodname_github_app %} on all repositories in your organization.
- Identify the
installation_id
that represents the connection between your {% data variables.product.prodname_github_app %} and the organization repositories it can access. Each {% data variables.product.prodname_github_app %} and organization pair have at most a singleinstallation_id
. You can identify thisinstallation_id
via Get an organization installation for the authenticated app. This requires authenticating as a {% data variables.product.prodname_github_app %} using a JWT, for more information see Authenticating as a {% data variables.product.prodname_github_app %}. - Generate an installation access token using the corresponding REST API endpoint, Create an installation access token for an app. This requires authenticating as a {% data variables.product.prodname_github_app %} using a JWT, for more information see Authenticating as a {% data variables.product.prodname_github_app %}, and Authenticating as an installation.
- Use this installation access token to interact with your repositories, either via the REST or GraphQL APIs, or via a Git client.
For more information, see AUTOTITLE.
If your server needs to access multiple repositories, you can create a new account on {% data variables.location.product_location %} and attach an SSH key that will be used exclusively for automation. Since this account on {% data variables.location.product_location %} won't be used by a human, it's called a machine user. You can add the machine user as a collaborator on a personal repository (granting read and write access), as an outside collaborator on an organization repository (granting read, write, or admin access), or to a team with access to the repositories it needs to automate (granting the permissions of the team).
{% ifversion fpt or ghec %}
Tip
Our terms of service state:
Accounts registered by "bots" or other automated methods are not permitted.
This means that you cannot automate the creation of accounts. But if you want to create a single machine user for automating tasks such as deploy scripts in your project or organization, that is totally cool.
{% endif %}
- Anyone with access to the repository and server has the ability to deploy the project.
- No (human) users need to change their local SSH settings.
- Multiple keys are not needed; one per server is adequate.
- Only organizations can restrict machine users to read-only access. Personal repositories always grant collaborators read/write access.
- Machine user keys, like deploy keys, are usually not protected by a passphrase.
- Run the
ssh-keygen
procedure on your server and attach the public key to the machine user account. - Give the machine user account access to the repositories you want to automate. You can do this by adding the account as a collaborator, as an outside collaborator, or to a team in an organization.