mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Fix issue in activating the VM disk while attaching disk
Currently <active> tag is passed within the disk element which is incorrect. As a result, disk will remain inactive even though the default option is true.
This commit is contained in:
@@ -532,8 +532,8 @@ class VmsModule(BaseModule):
|
||||
otypes.DiskAttachment(
|
||||
disk=otypes.Disk(
|
||||
id=disk_id,
|
||||
active=disk.get('activate', True),
|
||||
),
|
||||
active=disk.get('activate', True),
|
||||
interface=otypes.DiskInterface(
|
||||
disk.get('interface', 'virtio')
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user