Change from cloud init to ignition

This commit is contained in:
2026-06-10 19:26:28 +02:00
parent f2c6da73df
commit 71c67cb81a
4 changed files with 23 additions and 8 deletions
@@ -0,0 +1,15 @@
{
"ignition": {
"version": "3.3.0"
},
"passwd": {
"users": [
{
"name": "{{ vm_user }}",
"sshAuthorizedKeys": [
"{{ lookup('file', vm_ssh_public_key | replace('~', lookup('env', 'HOME'))) }}"
]
}
]
}
}