Created
January 31, 2018 15:13
-
-
Save jljouannic/39c629abc55f36e1a3f0f43a67c47c7f to your computer and use it in GitHub Desktop.
Cloud init config sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cloud-config | |
groups: | |
- user | |
users: | |
- name: <USER> | |
primary-group: <USER> | |
ssh-authorized-keys: | |
- <PUBLIC KEY> | |
sudo: ['ALL=(ALL) NOPASSWD:ALL'] | |
groups: sudo | |
shell: /bin/bash | |
package_upgrade: true | |
package_upgrade: true | |
packages: | |
- python |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment