---
- name: Add VM to Affinity Group in oVirt
hosts: localhost
gather_facts: no
tasks:
- name: Add VM to Affinity Group
ovirt_vm:
auth: "{{ ovirt_auth }}"
name: "your_vm_name" # Replace with the name of your VM
affinity_group_name: "your_affinity_group_name" # Replace with the name of your affinity group
state: present
delegate_to: localhost