From 73a1b21cad88a31526d898869baae9557e3f90fe Mon Sep 17 00:00:00 2001 From: Tobias Reisinger Date: Mon, 14 Oct 2024 20:58:36 +0200 Subject: [PATCH] Rename tf-templates to templates --- modules/infrastructure/hcloud.tf | 2 +- {tf-templates => templates}/cloud-init.yaml.tpl | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename {tf-templates => templates}/cloud-init.yaml.tpl (100%) diff --git a/modules/infrastructure/hcloud.tf b/modules/infrastructure/hcloud.tf index adcbb88..079cc49 100644 --- a/modules/infrastructure/hcloud.tf +++ b/modules/infrastructure/hcloud.tf @@ -4,7 +4,7 @@ resource "hcloud_ssh_key" "default" { } data "template_file" "cloud_init" { - template = file("./tf-templates/cloud-init.yaml.tpl") + template = file("./templates/cloud-init.yaml.tpl") vars = { tailscale_authkey = tailscale_tailnet_key.cloud_init_key.key diff --git a/tf-templates/cloud-init.yaml.tpl b/templates/cloud-init.yaml.tpl similarity index 100% rename from tf-templates/cloud-init.yaml.tpl rename to templates/cloud-init.yaml.tpl