Scale up as you grow — whether you're running one virtual machine or ten thousand.

From GPU-powered inference and Kubernetes to managed databases and storage, get everything you need to build, scale, and deploy intelligent applications.

By frankis
I am trying to create a new CentOS7 (in AMS2) droplet with the following User-Data. Unfortunately none of the provided User-Data are applied.
Please advise.
#cloud-config
users:
- name: someuser
groups: wheel
sudo: ['ALL=(ALL) NOPASSWD:ALL']
shell: /bin/bash
ssh-authorized-keys:
- ssh-dss
AAAABBBBCCCCDDDD...
runcmd:
- sed -i -e '/^PermitRootLogin/s/^.*$/PermitRootLogin yes/' /etc/ssh/sshd_config
- sed -i -e '$aAllowUsers someuser' /etc/ssh/sshd_config
- service sshd restart