We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I hope Ignition can support the import of public SSH keys from GitHub (or other trusted online identities).
To do that, we just need to call this opening API Endpoint:
$ curl -L https://api.github.com/users/mogeko/keys [ { "id": 64006488, "key": "ssh-rsa ..." } ]
We can allow passwd.sshAuthorizedKeys to accept an identity Object:
passwd.sshAuthorizedKeys
Object
{ "passwd": { "users": { "name": "mogeko", "sshAuthorizedKeys": [ { "server": "github", "user": "mogeko" }, "other ssh keys..." ] } } }
Or an identity String:
String
{ "passwd": { "users": { "name": "mogeko", "sshAuthorizedKeys": [ "gh:mogeko", "other ssh keys..." ] } } }
Here is a software with similar functions as a reference: ssh-import-id.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request
I hope Ignition can support the import of public SSH keys from GitHub (or other trusted online identities).
To do that, we just need to call this opening API Endpoint:
Desired Feature
We can allow
passwd.sshAuthorizedKeys
to accept an identityObject
:Or an identity
String
:Other Information
Here is a software with similar functions as a reference: ssh-import-id.
The text was updated successfully, but these errors were encountered: