I'm trying to install Ubuntu server 22.04 with auto-install mostly following this article. I can successfully get the cloud-init and use my user-data for the installation but I can't seem to get the encryption to work. Here's my user-data config.
#cloud-config
autoinstall:
version: 1
packages:
- ubuntu-desktop
snaps:
- name: firefox
- name: gnome-3-38-2004
- name: gtk-common-themes
- name: snap-store
- name: snapd-desktop-integration
identity:
hostname: hostname
password: [SHA-512 PASSWORD]
username: username
storage:
layout:
name: lvm
password: [SHA-512 PASSWORD]
what am i doing wrong here?