I boot strap a centos 6.5 AMI with this user data:
#cloud-config
users:
- default
- name: my-user
- sudo: ALL=(ALL) NOPASSWD:ALL
My machine comes up with the user cloud-user as the default user, not my-user. My public key has been copied to the cloud-user. So, in short, it does not work.
If I do this, the default user is my-user:
#cloud-config
user: my-user
sudo: ALL=(ALL) NOPASSWD:ALL
But I cannot sudo -i with this user.
How can I in userdata set my-user to be the default and have sudo provileges set?