From 83b15d803cca013a5453a4a7a914265dd3ba7375 Mon Sep 17 00:00:00 2001 From: Karim Naufal Date: Sun, 27 Feb 2022 10:52:38 +0100 Subject: [PATCH] changed the default name of cp nodes --- control_planes.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/control_planes.tf b/control_planes.tf index 1f7c239..7c31d4b 100644 --- a/control_planes.tf +++ b/control_planes.tf @@ -2,7 +2,7 @@ module "control_planes" { source = "./modules/host" count = var.control_plane_count - name = "k3s-control-plane-${count.index}" + name = "control-plane-${count.index}" ssh_keys = [hcloud_ssh_key.k3s.id] public_key = var.public_key