9 lines
181 B
Text
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 ~}
|