cloud_init.yaml insecure example

This commit is contained in:
Lukas Greve
2025-09-04 11:34:09 +02:00
parent 4409d31ae9
commit 8078d9c041

18
example/cloud_init.yaml Normal file
View File

@@ -0,0 +1,18 @@
#cloud-config
# vim: syntax=yaml
# examples:
# https://cloudinit.readthedocs.io/en/latest/topics/examples.html
---
ssh_pwauth: true
disable_root: false
chpasswd:
list: |
root:password
expire: false
users:
- name: ubuntu
sudo: ALL=(ALL) NOPASSWD:ALL
groups: users, admin
home: /home/ubuntu
shell: /bin/bash
lock_passwd: false