I have a task to configure the "default" iscsi initiator with CHAP user and password. the tasks runs fine but doesnt actually apply any changes to ONTAP.
ONTAP 9.10
Ansible 22.3
tasks:
- name: configure iSCSI security
na_ontap_iscsi_security:
use_rest: never
state: present
vserver: "{{ item.vserver }}"
initiator: "default"
inbound_username: "{{ item.inbound_username }}"
inbound_password: "{{ item.inbound_password }}"
auth_type: "chap"
<<: *login
with_items: "{{ vmware_svm_config }}"