So, I boot debian 12 bookworm with cloud-init, and it creates the user lui
as defined below.
users:
- name: lui
ssh_authorized_keys:
- ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIH7tTbt9XLZ0bGRcD+btgRh5qcuM7/TphfnCPl4fw8q3 la mienne
sudo: ["ALL=(ALL) ALL"]
shell: /bin/bash
gecos: C'est pas moi !,,,
lock_passwd: false
plain_text_passwd: elle
However, in cloud-init log I can see this
Cloud config schema errors: users.0: {'gecos': "C'est pas moi !,,,",
'lock_passwd': False, 'name': 'lui', 'plain_text_passwd': 'elle',
'shell': '/bin/bash', 'ssh_authorized_keys': ['ssh-ed25519
AAAAC3NzaC1lZDI1NTE5AAAAIH7tTbt9XLZ0bGRcD+byrFUv8cuM7/TphfnCJ6WXwkIq
la mienne'], 'sudo': ['ALL=(ALL) ALL']} is not valid under
any of the given schemas
Connected to the machine with the user lui
, I run sudo cloud-init schema --system
and effectively get the same error, but no explaination of what is wrong or missing...
So I guess I'm lucky enough for cloud-init not to give up and create the user anyway. One day, I'll run out of luck. So I'd rather fix this now.
I checked with cloud-init reference but haven'nt been able to find my mistake..
What is wrong with this cloud-init user definition?