From 9fe88f8f192fe373249a6dec4ef2a1496f57ce64 Mon Sep 17 00:00:00 2001 From: Maximilian Kratz Date: Thu, 6 Apr 2023 11:02:38 +0200 Subject: [PATCH] Adds the delete protection for both primary staging IPs --- staging.tf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/staging.tf b/staging.tf index 5321201..842f2b2 100644 --- a/staging.tf +++ b/staging.tf @@ -8,6 +8,7 @@ resource "hcloud_primary_ip" "staging-ipv4" { assignee_type = "server" auto_delete = false datacenter = "nbg1-dc3" + delete_protection = true } resource "hcloud_primary_ip" "staging-ipv6" { @@ -16,6 +17,7 @@ resource "hcloud_primary_ip" "staging-ipv6" { assignee_type = "server" auto_delete = false datacenter = "nbg1-dc3" + delete_protection = true } resource "hcloud_server" "staging" {