<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Unexpected error with Ansible connecting to Ontap 9.3 in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145041#M2780</link>
    <description>&lt;P&gt;This module was added with Ansible 2.6. &amp;nbsp;We have even more updates in 2.7 which released Oct 4th. &amp;nbsp;If you are using a lower version, please update.&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 15:16:15 GMT</pubDate>
    <dc:creator>dblackwe</dc:creator>
    <dc:date>2018-11-30T15:16:15Z</dc:date>
    <item>
      <title>Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141712#M2697</link>
      <description>&lt;P&gt;Hello together,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I try to get Ansible running against a cDOT 9.3 system.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ansible 2.5.3&lt;BR /&gt; config file = /etc/ansible/ansible.cfg&lt;BR /&gt; configured module search path = [u'/root/.ansible/plugins/modules', u'/usr/share/ansible/plugins/modules']&lt;BR /&gt; ansible python module location = /usr/lib/python2.7/site-packages/ansible&lt;BR /&gt; executable location = /bin/ansible&lt;BR /&gt; python version = 2.7.5 (default, Aug 4 2017, 00:39:18) [GCC 4.8.5 20150623 (Red Hat 4.8.5-16)]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have cloned the git repository and copied the files to the appropriate path.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Playbook:&lt;/P&gt;
&lt;PRE&gt;---

- name: NetApp Test
  hosts: localhost
  connection: local

  vars:
      netapp_username: admin
      netapp_cluster: FQDN of cluster

  vars_prompt:
  - name: "netapp_password"
    prompt: "Password"

# Create standard roles on NetApp cDot systems
  tasks:
    - name: User_Role_Manager
      na_ontap_user_role:
        state: present
        name: NetAppAdminSupp
        command_directory_name: DEFAULT
        access_level: readonly
        https: yes
        vserver: " {{ netapp_cluster }}"
        hostname: "{{ netapp_cluster }}"
        username: "{{ netapp_username }}"
        password: "{{ netapp_password }}"
&lt;/PRE&gt;
&lt;P&gt;When I run this playbook, I get the following unexpected error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;ansible-playbook role_test.yml
Password:

PLAY [NetApp Test] ******************************************************************************************************************************************

TASK [Gathering Facts] **************************************************************************************************************************************
ok: [localhost]

TASK [User_Role_Manager] ************************************************************************************************************************************
An exception occurred during task execution. To see the full traceback, use -vvv. The error was: netapp_lib.api.zapi.zapi.NaApiError: NetApp API failed. Reason - Unexpected error:
fatal: [localhost]: FAILED! =&amp;gt; {"changed": false, "module_stderr": "Traceback (most recent call last):\n  File \"/tmp/ansible_0ZJewB/ansible_module_na_ontap_user_role.py\", line 209, in &amp;lt;module&amp;gt;\n    main()\n  File \"/tmp/ansible_0ZJewB/ansible_module_na_ontap_user_role.py\", line 206, in main\n    v.apply()\n  File \"/tmp/ansible_0ZJewB/ansible_module_na_ontap_user_role.py\", line 185, in apply\n    netapp_utils.ems_log_event(\"na_ontap_user_role\", self.server)\n  File \"/tmp/ansible_0ZJewB/ansible_modlib.zip/ansible/module_utils/netapp.py\", line 205, in ems_log_event\n  File \"/usr/lib/python2.7/site-packages/netapp_lib/api/zapi/zapi.py\", line 282, in invoke_successfully\n    result = self.invoke_elem(na_element, enable_tunneling)\n  File \"/usr/lib/python2.7/site-packages/netapp_lib/api/zapi/zapi.py\", line 264, in invoke_elem\n    raise NaApiError('Unexpected error', e.message)\nnetapp_lib.api.zapi.zapi.NaApiError: NetApp API failed. Reason - Unexpected error:\n", "module_stdout": "", "msg": "MODULE FAILURE", "rc": 1}
        to retry, use: --limit @/git/role_test.retry

PLAY RECAP **************************************************************************************************************************************************
localhost                  : ok=1    changed=0    unreachable=0    failed=1
&lt;/PRE&gt;
&lt;P&gt;Does anyone have an idea?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Matthias&lt;/P&gt;</description>
      <pubDate>Wed, 25 Jul 2018 13:20:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141712#M2697</guid>
      <dc:creator>matthias_beck</dc:creator>
      <dc:date>2018-07-25T13:20:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141737#M2698</link>
      <description>&lt;P&gt;Hello Matthis,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is most likely because you have not authorized http traffic on your cluster yet.&amp;nbsp; The current version of the modules (which you are using) are http traffic by default.&amp;nbsp; They can do https by adding 'https: true" to all your tasks, but unless you are using your own certs, this will fail.&amp;nbsp; The fix to allow self-signed certs is done, just waitng approval to release.&amp;nbsp; In the mean time here is how you can activate http.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;cluster:&amp;gt; set -priv advanced&lt;/P&gt;
&lt;P&gt;cluster*:&amp;gt;system services web modify -http-enable true&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also we are quicker to respond and help on our NetApp.io channels.&amp;nbsp; Head over to &lt;A href="http://www.netapp.io/slack" target="_blank"&gt;www.netapp.io/slack&lt;/A&gt; to get an invite to our slack workspace and join the #configurationmgmt channel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hope this helps and happy ansibeing.&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 26 Jul 2018 15:45:23 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141737#M2698</guid>
      <dc:creator>dblackwe</dc:creator>
      <dc:date>2018-07-26T15:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141750#M2700</link>
      <description>&lt;P&gt;Hey,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for your respond.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I checked teh cluster and I can see, that we have http already enabled.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And for https, I have to wait for the release, because we are using certificates which are signed by our CA.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately, slack is blocked at our proxy server &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Matthias&lt;/P&gt;</description>
      <pubDate>Fri, 27 Jul 2018 05:25:42 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/141750#M2700</guid>
      <dc:creator>matthias_beck</dc:creator>
      <dc:date>2018-07-27T05:25:42Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142709#M2723</link>
      <description>&lt;P&gt;I have the same issue.&amp;nbsp; 9.3P4. HTTP enabled.&amp;nbsp;&amp;nbsp;netapp_lib.api.zapi.zapi.NaApiError: NetApp API failed. Reason - Unexpected error:&lt;/P&gt;</description>
      <pubDate>Thu, 13 Sep 2018 21:25:02 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142709#M2723</guid>
      <dc:creator>J_curl</dc:creator>
      <dc:date>2018-09-13T21:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142710#M2724</link>
      <description>If you have https:true and are using self-signed certs, you also need to bypass certificate validation with validate_certs: false</description>
      <pubDate>Thu, 13 Sep 2018 22:22:59 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142710#M2724</guid>
      <dc:creator>dblackwe</dc:creator>
      <dc:date>2018-09-13T22:22:59Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142949#M2729</link>
      <description>&lt;P&gt;This fixed it for me.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/12467"&gt;@dblackwe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;If you have https:true and are using self-signed certs, you also need to bypass certificate validation with validate_certs: false&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 25 Sep 2018 19:28:30 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/142949#M2729</guid>
      <dc:creator>J_curl</dc:creator>
      <dc:date>2018-09-25T19:28:30Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/144868#M2771</link>
      <description>&lt;P&gt;Where do I put&lt;/P&gt;
&lt;P&gt;https: true in tasks&lt;/P&gt;
&lt;P&gt;my Syntax:&lt;/P&gt;
&lt;P&gt;tasks:&lt;BR /&gt;&amp;nbsp; https: true&lt;BR /&gt; - name: Create Vol&lt;BR /&gt; na_cdot_volume:&lt;BR /&gt; state: absent&lt;BR /&gt; name: ansibletest&lt;BR /&gt; aggregate_name: aggr2_sas_fp_node2&lt;BR /&gt; size: 1&lt;BR /&gt; size_unit: gb&lt;BR /&gt; vserver: ho-0001-wnas03t&lt;BR /&gt; hostname: "{{ netapp_hostname }}"&lt;BR /&gt; username: "{{ netapp_username }}"&lt;BR /&gt; password: "{{ netapp_password }}"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Do help&lt;/P&gt;</description>
      <pubDate>Sat, 24 Nov 2018 15:25:32 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/144868#M2771</guid>
      <dc:creator>apaug</dc:creator>
      <dc:date>2018-11-24T15:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/144883#M2772</link>
      <description>&lt;P&gt;First, if you join us on Slack (get an invite at &lt;A href="http://www.netapp.io/slack" target="_blank"&gt;www.netapp.io/slack&lt;/A&gt;) you can get much quicker responses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Second, in your example it goes with the actual module run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;tasks:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;- name: Create Vol&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &lt;STRONG&gt;na_ontap_volume: &amp;nbsp;(do not use the na_cdot modules, they are all depreciated and mostly broken)&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; state: absent&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; name: ansibletest&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; aggregate_name: aggr2_sas_fp_node2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; size: 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; size_unit: gb&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; vserver: ho-0001-wnas03t&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; hostname: "{{ netapp_hostname }}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; username: "{{ netapp_username }}"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; password: "{{ netapp_password }}"&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;STRONG&gt;https: true&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&lt;STRONG&gt;&amp;nbsp; &amp;nbsp;validate_certs: false&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Nov 2018 13:53:03 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/144883#M2772</guid>
      <dc:creator>dblackwe</dc:creator>
      <dc:date>2018-11-26T13:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145020#M2776</link>
      <description>&lt;P&gt;Getting an error:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;ERROR! no action detected in task. This often indicates a misspelled module name, or incorrect module path.&lt;/P&gt;
&lt;P&gt;The error appears to have been in '/home/kkund/volume_create.yml': line 10, column 6, but may&lt;BR /&gt;be elsewhere in the file depending on the exact syntax problem.&lt;/P&gt;
&lt;P&gt;The offending line appears to be:&lt;/P&gt;
&lt;P&gt;tasks:&lt;BR /&gt; - name: Create Volume&lt;BR /&gt; ^ here&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 05:39:08 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145020#M2776</guid>
      <dc:creator>apaug</dc:creator>
      <dc:date>2018-11-30T05:39:08Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145038#M2778</link>
      <description>&lt;P&gt;Did you copy the whole line after na_ontap_volume? &amp;nbsp;That part in () was just there as a note for you, it shouldn't be there.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 13:57:22 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145038#M2778</guid>
      <dc:creator>dblackwe</dc:creator>
      <dc:date>2018-11-30T13:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145040#M2779</link>
      <description>&lt;P&gt;I did not copy the text inside the brackets.&lt;/P&gt;
&lt;P&gt;This is my playbook:&lt;/P&gt;
&lt;P&gt;tasks:&lt;BR /&gt;&amp;nbsp;&amp;nbsp; - name: Create Volume&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; na_ontap_volume:&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; state: absent&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: ansibletest1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggregate_name: aggr2_sas_fp_node2&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size: 1&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size_unit: gb&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vserver: ho-0001-wnas03t&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hostname: "{{ netapp_hostname }}"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; username: "{{ netapp_username }}"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; password: "{{ netapp_password }}"&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; https: true&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; validate_certs: false&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And the error as mentioned previously&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 15:10:58 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145040#M2779</guid>
      <dc:creator>apaug</dc:creator>
      <dc:date>2018-11-30T15:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145041#M2780</link>
      <description>&lt;P&gt;This module was added with Ansible 2.6. &amp;nbsp;We have even more updates in 2.7 which released Oct 4th. &amp;nbsp;If you are using a lower version, please update.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 15:16:15 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145041#M2780</guid>
      <dc:creator>dblackwe</dc:creator>
      <dc:date>2018-11-30T15:16:15Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145042#M2781</link>
      <description>&lt;P&gt;Thank You!!&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.netapp.com/t5/user/viewprofilepage/user-id/12467"&gt;@dblackwe&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;This module was added with Ansible 2.6. &amp;nbsp;We have even more updates in 2.7 which released Oct 4th. &amp;nbsp;If you are using a lower version, please update.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 15:18:31 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/145042#M2781</guid>
      <dc:creator>apaug</dc:creator>
      <dc:date>2018-11-30T15:18:31Z</dc:date>
    </item>
    <item>
      <title>Re: Unexpected error with Ansible connecting to Ontap 9.3</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/159916#M3089</link>
      <description>&lt;P&gt;Please try using the task module as netapp.ontap.na_ontap_volume or add below line under hosts&lt;/P&gt;
&lt;P&gt;collections:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - netapp.ontap&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Hoping you have installed netapp.ontap collection from ansible-galaxy&lt;/P&gt;</description>
      <pubDate>Mon, 05 Oct 2020 09:21:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Unexpected-error-with-Ansible-connecting-to-Ontap-9-3/m-p/159916#M3089</guid>
      <dc:creator>chandra1044</dc:creator>
      <dc:date>2020-10-05T09:21:40Z</dc:date>
    </item>
  </channel>
</rss>

