terraform fmt
Some checks failed
Gitea Actions Demo / Terraform Plan (push) Failing after 20s

This commit is contained in:
MichaelFisher1997
2025-04-17 16:48:08 +01:00
parent a0a91e9a3f
commit 72f0080660
2 changed files with 22 additions and 22 deletions

View File

@@ -4,9 +4,9 @@ data "template_file" "cloud_init_alpaca" {
template = file("${path.module}/files/cloud_init.yaml")
vars = {
ssh_key = file("~/.ssh/id_ed25519.pub")
hostname = "alpaca-${count.index + 1}"
domain = "home.arpa"
ssh_key = file("~/.ssh/id_ed25519.pub")
hostname = "alpaca-${count.index + 1}"
domain = "home.arpa"
tailscale_key = var.tailscale_key
}
}
@@ -39,9 +39,9 @@ data "template_file" "cloud_init_llama" {
template = file("${path.module}/files/cloud_init.yaml")
vars = {
ssh_key = file("~/.ssh/id_ed25519.pub")
hostname = "llama-${count.index + 1}"
domain = "home.arpa"
ssh_key = file("~/.ssh/id_ed25519.pub")
hostname = "llama-${count.index + 1}"
domain = "home.arpa"
tailscale_key = var.tailscale_key
}
}