Skip to content

Commit

Permalink
fix: change default, add doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Wenzel committed Jun 6, 2024
1 parent fe9c6a1 commit 0bf0239
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion plugins/modules/proxmox_vm_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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)

Expand Down

0 comments on commit 0bf0239

Please sign in to comment.