I’m setting up droplets via the API. in the create call I’m both adding an ssh key that’s already installed on DigitalOcean for logging into the droplet, and another third party ssh key to use for external communication. The second one is added via the user data cloud init script.
When I use the call with only the login key it works. But when I add the init script the login key doesn’t work. This means I can’t log into the droplet to debug. Any ideas what is going on?
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
Turns out the key was malformed. It lacked proper line endings. Very confusing debugging.
Can you share an example of how you are calling the API and the cloud config script used? It would help narrow down the issue. At the surface, what you’re trying to should be supported.
You have a few options for adding multiple SSH keys to a Droplet:
The API allows for adding more than one SSH key when creating a Droplet. The
ssh_keys
field and take an array of SSH key IDs. For example, the body of your request might look like:You can also add SSH keys to new Droplets via user data. For example:
If you specify the
root
user, these keys will be merged with the keys specified via the API into the~/.ssh/authorized_keys
file.If you are still having issues and want to do further debugging, you can reset the root password for your Droplet via the “Access” tab for the Droplet in the control panel in order to gain access.
Yeah that’s no help at all. Like I said, I’m adding one key for access, and one key to communicate with a third party. Both your options are only for access.
This is my config:
I naturally removed the keys themselves.
Now what I’m trying to do is: Create a droplet that I can reach via the SSH key supplied in “ssh_keys” and give that droplet access to my github account via the “user_data ssh_keys”.