Adds the delete protection for both primary staging IPs

This commit is contained in:
Maximilian Kratz 2023-04-06 11:02:38 +02:00
parent 73b2f392d7
commit 9fe88f8f19

View file

@ -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" {