From 12c6150d68bdda9b4fa7637a95360ed6d3d674e6 Mon Sep 17 00:00:00 2001 From: jo Date: Tue, 16 Dec 2025 16:50:59 +0100 Subject: [PATCH] refactor: fix primary ip module need_reload default value --- 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"]: