#cloud-config
# In a normal scenario we'd definitely disable root right away, but we want to test server setup
# from scratch
disable_root: false
users:
- name: root
ssh_authorized_keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIM+b3uHx1rXWrQ5AqSwEBVnka4G5gyqELy8uXKJqRd3E test@example.com
# Images often ship without an SSH server and without rsync, so make sure we have them
packages:
- openssh-server
- rsync