From feb21cadfacfa2774c35188e55003ba9a19d462c Mon Sep 17 00:00:00 2001 From: MichaelFisher1997 Date: Thu, 17 Apr 2025 17:04:06 +0100 Subject: [PATCH] terraform fmt --- terraform/cloud-init.tf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/terraform/cloud-init.tf b/terraform/cloud-init.tf index 3950b62..216482e 100644 --- a/terraform/cloud-init.tf +++ b/terraform/cloud-init.tf @@ -4,9 +4,9 @@ data "template_file" "cloud_init_alpaca" { template = file("${path.module}/files/cloud_init.yaml") vars = { - ssh_key = var.ssh_key - hostname = "alpaca-${count.index + 1}" - domain = "home.arpa" + ssh_key = var.ssh_key + hostname = "alpaca-${count.index + 1}" + domain = "home.arpa" TS_AUTHKEY = var.TS_AUTHKEY } } @@ -39,9 +39,9 @@ data "template_file" "cloud_init_llama" { template = file("${path.module}/files/cloud_init.yaml") vars = { - ssh_key = var.ssh_key - hostname = "llama-${count.index + 1}" - domain = "home.arpa" + ssh_key = var.ssh_key + hostname = "llama-${count.index + 1}" + domain = "home.arpa" TS_AUTHKEY = var.TS_AUTHKEY } }