diff --git a/plugins/modules/proxmox_vm_info.py b/plugins/modules/proxmox_vm_info.py index 4232d81e044..79f3a79cbda 100644 --- a/plugins/modules/proxmox_vm_info.py +++ b/plugins/modules/proxmox_vm_info.py @@ -61,6 +61,8 @@ description: - Whether to retrieve the current network status - Requires enabled/running qemu-guest-agent + type: bool + default: false extends_documentation_fragment: - community.general.proxmox.actiongroup_proxmox - community.general.proxmox.documentation @@ -239,7 +241,7 @@ def main(): type="str", choices=["none", "current", "pending"], default="none", required=False ), - network=dict(type="bool", default=True, required=False) + network=dict(type="bool", default=False, required=False) ) module_args.update(vm_info_args)