From 184d8ca313acbd99f0e692a33423a14343ee3318 Mon Sep 17 00:00:00 2001 From: Sebastian Serfling Date: Fri, 8 May 2026 15:37:37 +0200 Subject: [PATCH] simplify: nutze ~/.ssh/deploy vom proxmox host --- terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/main.tf b/terraform/main.tf index b49722a..52c2093 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -57,7 +57,7 @@ resource "null_resource" "staging_lxc" { connection { type = "ssh" user = "root" - private_key = file(pathexpand("~/.ssh/deploy")) + private_key = file(pathexpand("~/.ssh/deploy_key")) host = var.staging_ip timeout = "5m" }