Below is an example of a config file for a container-creating script. The config below works, except for the ssh option. Is it possible to add the ssh key, if so, how? Thanks in advance!
proxmox.nodes(node_name).lxc.create(
hostname=CTName,
vmid=ctid,
ostemplate=template_name,
memory=512,
cores=cores,
swap=512,
onboot=1,
password=root_password,
nameserver = IP,
rootfs=‘local-lvm:8’,
ssh_public_keys=pubkey, <---------
**network_settings
)