Githubユーザーアカウントにsshキーを追加する目的でgithub.comサーバーのユーザー名とパスワードで識別する方法はありますか?これまでに読んだすべての内容は、ユーザーのsshキーをWeb GUI経由で追加する必要があることを示唆しています。コマンドラインインターフェイスまたはbash/ansible/somethingスクリプトを介してキーを追加する方法またはプロセスを探しています。
ユーザー名とパスワードによる認証は github api によってサポートされています:
GitHub API v3を介して認証する方法は3つあります。 ...
基本認証
$ curl -u "username" https://api.github.com
...
したがって、 お好みの言語でlib を選択し、実装されたバージョンのCreate a Publicを使用しますKey「公開キー」APIセクション:
公開鍵を作成します。基本認証またはOAuth少なくとも[write:public_key]スコープで認証されている必要があります。
[〜#〜]入力[〜#〜]POST /user/keys
{
"title": "octocat@octomac",
"key": "ssh-rsa AAA..."
}
コマンドラインから(curlを介して)使用する場合:
curl -u "username" --data '{"title":"test-key","key":"ssh-rsa AAA..."}' https://api.github.com/user/keys
またはパスワードの入力を求めずに:
curl -u "username:password" --data '{"title":"test-key","key":"ssh-rsa AAA..."}' https://api.github.com/user/keys
Xx4hの回答と同様に、これは新しいVMセットアップを自動化するためのスクリプトで行う方法です。
ssh-keygen -t rsa -b 4096 -C "[email protected]"
curl -u "myusername" \
--data "{\"title\":\"DevVm_`date +%Y%m%d%H%M%S`\",\"key\":\"`cat ~/.ssh/id_rsa.pub`\"}" \
https://api.github.com/user/keys
これにより、新しいSSHキーが提供され、curl呼び出しに含まれ、GitHub側のそれぞれに一意でありながら簡単に識別できる名前が付けられます(たとえば、今実行するとDevVm_150602142247になります)。
#!/bin/bash
set -xe
myemail="your-email"
#your personal access token
git_api_token="befdf14c152d6f2ad8cff9c5affffffffffffffffff"
#We'll use the HTTPS to Push a ssh key to git, SSH for pull/Push configuration
gitrepo_ssh="[email protected]:person/repo.git"
gitrepo_https="https://github.com/person/repo.git"
#Generating SSH key:
ssh-keygen -f "${HOME}/.ssh/id_rsa" -t rsa -b 4096 -C "${myemail}" -N ''
sslpub="$(cat ${HOME}/.ssh/id_rsa.pub |tail -1)"
#git API path for posting a new ssh-key:
git_api_addkey="https://api.$(echo ${gitrepo_https} |cut -d'/' -f3)/user/keys"
#lets name the ssh-key in get after the hostname with a timestamp:
git_ssl_keyname="$(hostname)_$(date +%d-%m-%Y)"
#Finally lets post this ssh key:
curl -H "Authorization: token ${git_api_token}" -H "Content-Type: application/json" -X POST -d "{\"title\":\"${git_ssl_keyname}\",\"key\":\"${sslpub}\"}" ${git_api_addkey}
別のオプションは、APIトークンを使用することです...私は内部のgitLabサーバーで以下を使用します
スニペット:
#!/bin/bash
myemail="[email protected]"
# User API token can be found: "https://git.labs.domain.com/profile/account"
git_api_token="m3iP27Jh8KSgNmWAksYp"
# We'll use the HTTPS to Push a ssh key to git, SSH for pull/Push configuration
gitrepo_ssh="[email protected]:devops/automation.git"
gitrepo_https="https://git.labs.domain.com/devops/automation.git"
########################] D O N O T C H A N G E [########################
# Generating SSH key:
ssh-keygen -f "${HOME}/.ssh/id_rsa" -t rsa -b 4096 -C "${myemail}" -N ''
sslpub="$(cat ${HOME}/.ssh/id_rsa.pub |tail -1)"
# git API path for posting a new ssh-key:
git_api_addkey="https://$(echo ${gitrepo_https} |cut -d'/' -f3)/api/v3/user/keys"
# lets name the ssh-key in get after the hostname with a timestamp:
git_ssl_keyname="$(hostname)-$(date +%Y%m%d%H%M%S)"
# Finally lets post this ssh key:
curl -H "PRIVATE-TOKEN: ${git_api_token}" -H "Content-Type: application/json" \
-X POST -d "{\"title\":\"${git_ssl_keyname}\",\"key\":\"${sslpub}\"}" \
${git_api_addkey}