From f69f3623da9d629931bf06579125b05cebed7bbb Mon Sep 17 00:00:00 2001 From: Domen Date: Mon, 2 Jun 2025 10:08:17 +0200 Subject: [PATCH] Changed regenerate_disk_id default to false --- plugins/modules/virtual_disk_attach.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/modules/virtual_disk_attach.py b/plugins/modules/virtual_disk_attach.py index 016bf1c9..2ac1cc08 100644 --- a/plugins/modules/virtual_disk_attach.py +++ b/plugins/modules/virtual_disk_attach.py @@ -83,7 +83,7 @@ description: - Regenerate the disk ID, e.g. GPT UUID or MBR signature. type: bool - default: True + default: False """ @@ -263,7 +263,7 @@ def main() -> None: default=4, ), read_only=dict(type="bool", default=False), - regenerate_disk_id=dict(type="bool", default=True), + regenerate_disk_id=dict(type="bool", default=False), ), ), ),