Hi,
trying to use ansible to create fc target for a vserver but no luck, playbook below , the error is fatal: [localhost]: FAILED! => {"changed": false, "msg": "Error: the python NetApp-Lib module is required. Import error: No module named 'netapp_lib'"}
not sure what is missing, any idea?
playbook
--
- hosts: localhost
vars:
netapp_hostname: cluster01
netapp_username: svmadmin
vars_prompt:
- name: netapp_password
prompt: "Please enter Netapp password (hidden from output)"
private: yes
tasks:
- name: Create FCP interface
netapp.ontap.na_ontap_interface:
vserver: svmfcp31
state: present
interface_name: svmtest_0g_tgt
interface_type: fc
data_protocol: fcp
current_node: node-01
current_port: 0g
role: data
failover_policy: disabled
force_subnet_association: false
admin_status: up
hostname: "{{ netapp_hostname }}"
username: "{{ netapp_username }}"
password: "{{ netapp_password }}"