From 4c29372a1cff1617b0942c0cfbb8bef39001b303 Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Fri, 28 Apr 2023 10:51:17 +0200 Subject: [PATCH] add timezone to cloud-init --- files/cloud_init.cfg.tftpl | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/files/cloud_init.cfg.tftpl b/files/cloud_init.cfg.tftpl index d2c1bee..3a1f2b7 100644 --- a/files/cloud_init.cfg.tftpl +++ b/files/cloud_init.cfg.tftpl @@ -2,8 +2,9 @@ hostname: "${name}" manage_etc_hosts: true disable_root: false -ssh_authorized_keys: +timezone: Europe/Amsterdam +ssh_authorized_keys: %{ for key in admin_authorized_keys ~} - "${key}" %{ endfor ~}