vade-cli 0.1.1

A command-line tool to deploy applications on Linux servers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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