This repository has been archived on 2023-12-26. You can view files and clone it, but cannot push or open issues or pull requests.
hermes/cloud_init.cfg.tftpl
2023-04-05 16:32:07 +02:00

9 lines
181 B
Text

#cloud-config
hostname: "${name}"
manage_etc_hosts: true
ssh_pwauth: false
disable_root: false
ssh_authorized_keys:
%{ for key in admin_authorized_keys ~}
- "${key}"
%{ endfor ~}