From b046a1b862ad9628ee69ac0ae59428e6602e9bcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torjus=20H=C3=A5kestad?= Date: Sat, 7 Feb 2026 14:09:30 +0100 Subject: [PATCH] terraform: remove flake_branch from test VMs VMs are now bootstrapped and running. Remove temporary flake_branch and vault_wrapped_token settings so they use master going forward. Co-Authored-By: Claude Opus 4.5 --- terraform/vms.tf | 30 ++++++++++++------------------ 1 file changed, 12 insertions(+), 18 deletions(-) diff --git a/terraform/vms.tf b/terraform/vms.tf index 265024a..5d33a73 100644 --- a/terraform/vms.tf +++ b/terraform/vms.tf @@ -39,28 +39,22 @@ locals { flake_branch = "vault-setup" # Bootstrap from this branch instead of master } "testvm01" = { - ip = "10.69.13.20/24" - cpu_cores = 2 - memory = 2048 - disk_size = "20G" - flake_branch = "deploy-test-hosts" - vault_wrapped_token = "s.YRGRpAZVVtSYEa3wOYOqFmjt" + ip = "10.69.13.20/24" + cpu_cores = 2 + memory = 2048 + disk_size = "20G" } "testvm02" = { - ip = "10.69.13.21/24" - cpu_cores = 2 - memory = 2048 - disk_size = "20G" - flake_branch = "deploy-test-hosts" - vault_wrapped_token = "s.tvs8yhJOkLjBs548STs6DBw7" + ip = "10.69.13.21/24" + cpu_cores = 2 + memory = 2048 + disk_size = "20G" } "testvm03" = { - ip = "10.69.13.22/24" - cpu_cores = 2 - memory = 2048 - disk_size = "20G" - flake_branch = "deploy-test-hosts" - vault_wrapped_token = "s.sQ80FZGeG3z6jgrsuh74IopC" + ip = "10.69.13.22/24" + cpu_cores = 2 + memory = 2048 + disk_size = "20G" } }