1
0
mirror of https://github.com/rancher/os.git synced 2025-08-08 18:18:23 +00:00
os/docs/os/configuration/ssh-keys/index.md
Sven Dowideit 5dd11c3ddc use page.baseurl to avoid embedding the RancherOS version in every link
Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
2017-08-17 07:12:45 +10:00

24 lines
638 B
Markdown

---
title: SSH Keys in RancherOS
---
## SSH Keys
---
RancherOS supports adding SSH keys through the [cloud-config]({{page.baseurl}}/configuration/#cloud-config) file. Within the cloud-config file, you simply add the ssh keys within the `ssh_authorized_keys` key.
```yaml
#cloud-config
ssh_authorized_keys:
- ssh-rsa AAA...ZZZ example1@rancher
- ssh-rsa BBB...ZZZ example2@rancher
```
When we pass the cloud-config file during the `ros install` command, it will allow these ssh keys to be associated with the **rancher** user. You can ssh into RancherOS using the key.
```
$ ssh -i /path/to/private/key rancher@<ip-address>
```