1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 | #cloud-config
password: passw0rd
chpasswd: { expire: False }
ssh_pwauth: True
ssh-authorized-keys:
- |
<inline ssh public key here for default user fedora>
users:
- name: rharper
lock_passwd: False
sudo: ALL=(ALL) NOPASSWD:ALL
shell: /bin/bash
ssh-authorized-keys:
- |
<inline ssh public key here for username: rharper>
|