From 10c0e14d9db0493ba637a6e5d5e79a176fd05ab5 Mon Sep 17 00:00:00 2001 From: "Jonas L." Date: Tue, 16 Dec 2025 16:59:28 +0100 Subject: [PATCH] refactor: fix primary ip module need_reload default value (#772) ##### SUMMARY Related to #771 --- plugins/modules/primary_ip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/primary_ip.py b/plugins/modules/primary_ip.py index db5bd1d..9f677e3 100644 --- a/plugins/modules/primary_ip.py +++ b/plugins/modules/primary_ip.py @@ -234,7 +234,7 @@ class AnsiblePrimaryIP(AnsibleHCloud): self.primary_ip.reload() def _update(self): - need_reload = True + need_reload = False if (value := self.module.params.get("delete_protection")) is not None: if value != self.primary_ip.protection["delete"]: