Hello, I noticed a strange behavior with snapshot_policy module (I'm using netapp.ontap 23.0.0)
When I try to delete a policy with state=absent, the playbook doesn't delete it if vserver variable is set. (EDIT: this happens only if the vserver name is the cluster vserver)
- name: Delete Snapshot policy
netapp.ontap.na_ontap_snapshot_policy:
state: absent
name: ansible2
vserver: foo
username: "{{ netapp_username }}"
password: "{{ netapp_password }}"
hostname: "{{ netapp_hostname }}"
https: false
Is that by design?
Thank you all