<?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: Issues with ansible netapp module na_ontap_volume to create volume on Ontap in Software Development Kit (SDK) and API Discussions</title>
    <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161447#M3101</link>
    <description>&lt;P&gt;You'll get help faster through the Slack channel - go to netapp.io and click on the "Slack" icon (top-right) to get the invite.&amp;nbsp; Ansible is supported through Slack - on the #configurationmgmt channel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try adding "&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;|&amp;nbsp;int" to the end of your size: setting perhaps?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;size: “{{ size | int }}”&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 24 Nov 2020 00:17:56 GMT</pubDate>
    <dc:creator>JohnChampion</dc:creator>
    <dc:date>2020-11-24T00:17:56Z</dc:date>
    <item>
      <title>Issues with ansible netapp module na_ontap_volume to create volume on Ontap</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161408#M3100</link>
      <description>&lt;P&gt;Hi Netapp Support Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have been trying to use ansible netapp module na_ontap_volume to create volume on Ontap. Tried to scenarios, both failing with different error messages.&lt;/P&gt;
&lt;P&gt;Could you please help me with this, don’t what’s going wrong here?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scenario 1:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ cat ansible_vol.yaml&lt;/P&gt;
&lt;P&gt;hostname: 'x.x.x.x'&lt;/P&gt;
&lt;P&gt;username: 'xxxxxx'&lt;/P&gt;
&lt;P&gt;password: 'xxxxxxxx'&lt;/P&gt;
&lt;P&gt;vserver: 'xxxx_xxx_xxx'&lt;/P&gt;
&lt;P&gt;aggr: 'xxxx_xxxxx_xxxx'&lt;/P&gt;
&lt;P&gt;vol_name: 'ansibleVol'&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ cat volume_lifecycle.yaml&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;- hosts: localhost&lt;/P&gt;
&lt;P&gt;&amp;nbsp; collections:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - netapp.ontap&lt;/P&gt;
&lt;P&gt;&amp;nbsp; name: Volume Lifecycle&lt;/P&gt;
&lt;P&gt;&amp;nbsp; vars_files:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /home/ansible/ansible_vol.yaml&lt;/P&gt;
&lt;P&gt;&amp;nbsp; tasks:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - name: Volume Create&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; na_ontap_volume:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; state: present&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: “{{ vol_name }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vserver: “{{ vserver }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggregate_name: “{{ aggr }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size: 10&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size_unit: gb&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; policy: default&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; junction_path: “/{{ vol_name }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hostname: “{{ hostname }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; username: “{{ username }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; password: “{{ password }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; https: True&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; validate_certs: false&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ ansible-playbook volume_lifecycle.yaml --extra-vars "@ansible_vol.yaml"&lt;/P&gt;
&lt;P&gt;[WARNING]: No inventory was parsed, only implicit localhost is available&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLAY [Volume Lifecycle] ***************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TASK [Gathering Facts] ****************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;ok: [localhost]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TASK [Volume Create] ******************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;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:UnicodeEncodeError('latin-1', '“x.x.x.x”:443', 0, 1, 'ordinal not in range(256)')&lt;/P&gt;
&lt;P&gt;fatal: [localhost]: FAILED! =&amp;gt; {"changed": false, "msg": "Error fetching volume “ansibleVol” : NetApp API failed. Reason - Unexpected error:UnicodeEncodeError('latin-1', '“x.x.x.x”:443', 0, 1, 'ordinal not in range(256)')"}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLAY RECAP ****************************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;localhost&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : ok=1&amp;nbsp;&amp;nbsp;&amp;nbsp; changed=0&amp;nbsp;&amp;nbsp;&amp;nbsp; unreachable=0&amp;nbsp;&amp;nbsp;&amp;nbsp; failed=1&amp;nbsp;&amp;nbsp;&amp;nbsp; skipped=0&amp;nbsp;&amp;nbsp;&amp;nbsp; rescued=0&amp;nbsp;&amp;nbsp;&amp;nbsp; ignored=0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Scenario 2:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ cat ansible_vol.yaml&lt;/P&gt;
&lt;P&gt;hostname: ‘x.x.x.x’&lt;/P&gt;
&lt;P&gt;username: 'xxxxxxx'&lt;/P&gt;
&lt;P&gt;password: 'xxxxx@xxx@'&lt;/P&gt;
&lt;P&gt;vserver: 'xxxxx_xxx_xxx'&lt;/P&gt;
&lt;P&gt;aggr: 'xxxx_xxxx_xxxx'&lt;/P&gt;
&lt;P&gt;vol_name: 'ansibleVol'&lt;/P&gt;
&lt;P&gt;size: 10&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ cat volume_lifecycle.yaml&lt;/P&gt;
&lt;P&gt;---&lt;/P&gt;
&lt;P&gt;- hosts: localhost&lt;/P&gt;
&lt;P&gt;&amp;nbsp; collections:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; - netapp.ontap&lt;/P&gt;
&lt;P&gt;&amp;nbsp; name: Volume Lifecycle&lt;/P&gt;
&lt;P&gt;&amp;nbsp; vars_files:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; /home/ansible/ansible_vol.yaml&lt;/P&gt;
&lt;P&gt;&amp;nbsp; tasks:&lt;/P&gt;
&lt;P&gt;&amp;nbsp; - name: Volume Create&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; na_ontap_volume:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; state: present&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; name: “{{ vol_name }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vserver: “{{ vserver }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; aggregate_name: “{{ aggr }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size: “{{ size }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; size_unit: gb&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; policy: default&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; junction_path: “/{{ vol_name }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; hostname: “{{ hostname }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; username: “{{ username }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; password: “{{ password }}”&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; https: True&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; validate_certs: false&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$ ansible-playbook volume_lifecycle.yaml --extra-vars "@ansible_vol.yaml"&lt;/P&gt;
&lt;P&gt;[WARNING]: No inventory was parsed, only implicit localhost is available&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLAY [Volume Lifecycle] ***************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TASK [Gathering Facts] ****************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;ok: [localhost]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;TASK [Volume Create] ******************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;fatal: [localhost]: FAILED! =&amp;gt; {"changed": false, "msg": "argument size is of type &amp;lt;class 'str'&amp;gt; and we were unable to convert to int: &amp;lt;class 'str'&amp;gt; cannot be converted to an int"}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;PLAY RECAP ****************************************************************************************************************************************************************************************************&lt;/P&gt;
&lt;P&gt;localhost&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; : ok=1&amp;nbsp;&amp;nbsp;&amp;nbsp; changed=0&amp;nbsp; &amp;nbsp;&amp;nbsp;unreachable=0&amp;nbsp;&amp;nbsp;&amp;nbsp; failed=1&amp;nbsp;&amp;nbsp;&amp;nbsp; skipped=0&amp;nbsp;&amp;nbsp;&amp;nbsp; rescued=0&amp;nbsp;&amp;nbsp;&amp;nbsp; ignored=0&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;[ansible@server ~]$&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;Himanshu Rajpal&lt;/P&gt;</description>
      <pubDate>Wed, 04 Jun 2025 10:44:28 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161408#M3100</guid>
      <dc:creator>HimanshuRajpal</dc:creator>
      <dc:date>2025-06-04T10:44:28Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with ansible netapp module na_ontap_volume to create volume on Ontap</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161447#M3101</link>
      <description>&lt;P&gt;You'll get help faster through the Slack channel - go to netapp.io and click on the "Slack" icon (top-right) to get the invite.&amp;nbsp; Ansible is supported through Slack - on the #configurationmgmt channel.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try adding "&amp;nbsp;&lt;SPAN style="font-family: inherit;"&gt;&amp;nbsp;|&amp;nbsp;int" to the end of your size: setting perhaps?&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;&lt;SPAN&gt;size: “{{ size | int }}”&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 24 Nov 2020 00:17:56 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161447#M3101</guid>
      <dc:creator>JohnChampion</dc:creator>
      <dc:date>2020-11-24T00:17:56Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with ansible netapp module na_ontap_volume to create volume on Ontap</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161547#M3102</link>
      <description>&lt;P&gt;Thanks for your response. I will move this communication to Slack channel&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, I already tried&amp;nbsp;size: “{{ size | int}}” but no luck. See below.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[ansible@server ~]$ cat volume_lifecycle.yaml&lt;BR /&gt;---&lt;BR /&gt;- hosts: localhost&lt;BR /&gt;collections:&lt;BR /&gt;- netapp.ontap&lt;BR /&gt;name: Volume Lifecycle&lt;BR /&gt;vars_files:&lt;BR /&gt;/home/ansible/ansible_vol.yaml&lt;BR /&gt;tasks:&lt;BR /&gt;- name: Volume Create&lt;BR /&gt;na_ontap_volume:&lt;BR /&gt;state: present&lt;BR /&gt;name: “{{ vol_name }}”&lt;BR /&gt;vserver: “{{ vserver }}”&lt;BR /&gt;aggregate_name: “{{ aggr }}”&lt;BR /&gt;size: “{{ size | int}}”&lt;BR /&gt;size_unit: gb&lt;BR /&gt;policy: default&lt;BR /&gt;junction_path: “/{{ vol_name }}”&lt;BR /&gt;hostname: “{{ hostname }}”&lt;BR /&gt;username: “{{ username }}”&lt;BR /&gt;password: “{{ password }}”&lt;BR /&gt;https: True&lt;BR /&gt;validate_certs: false&lt;BR /&gt;[ansible@server ~]$ cat ansible_vol.yaml&lt;BR /&gt;hostname: 'x.x.x.x'&lt;BR /&gt;username: 'xxxxxxx'&lt;BR /&gt;password: 'xxxxxx@xxx'&lt;BR /&gt;vserver: 'xxxxxxxx'&lt;BR /&gt;aggr: 'xxx_xxx_xxxx'&lt;BR /&gt;vol_name: 'ansibleVol'&lt;BR /&gt;size: 10&lt;BR /&gt;[ansible@server ~]$&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;[ansible@server ~]$ ansible-playbook volume_lifecycle.yaml --extra-vars "@ansible_vol.yaml"&lt;BR /&gt;[WARNING]: No inventory was parsed, only implicit localhost is available&lt;/P&gt;&lt;P&gt;[WARNING]: provided hosts list is empty, only localhost is available. Note that the implicit localhost does not match 'all'&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;PLAY [Volume Lifecycle] ***************************************************************************************************************************************************************************************&lt;/P&gt;&lt;P&gt;TASK [Gathering Facts] ****************************************************************************************************************************************************************************************&lt;BR /&gt;ok: [localhost]&lt;/P&gt;&lt;P&gt;TASK [Volume Create] ******************************************************************************************************************************************************************************************&lt;BR /&gt;fatal: [localhost]: FAILED! =&amp;gt; {"changed": false, "msg": "argument size is of type &amp;lt;class 'str'&amp;gt; and we were unable to convert to int: &amp;lt;class 'str'&amp;gt; cannot be converted to an int"}&lt;/P&gt;&lt;P&gt;PLAY RECAP ****************************************************************************************************************************************************************************************************&lt;BR /&gt;localhost : ok=1 changed=0 unreachable=0 failed=1 skipped=0 rescued=0 ignored=0&lt;/P&gt;&lt;P&gt;[ansible@server ~]$&lt;/P&gt;</description>
      <pubDate>Thu, 26 Nov 2020 00:37:40 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/161547#M3102</guid>
      <dc:creator>HimanshuRajpal</dc:creator>
      <dc:date>2020-11-26T00:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issues with ansible netapp module na_ontap_volume to create volume on Ontap</title>
      <link>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/447523#M3276</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Just in case anyone else stumbles over this problem again, I'll post the solution here.&lt;/P&gt;&lt;P&gt;The issue lies with the quotation mark characters that present in the exmple code at &lt;A href="https://netapp.io/2018/10/11/getting-started-with-netapp-and-ansible-first-playbook-example/" target="_blank"&gt;https://netapp.io/2018/10/11/getting-started-with-netapp-and-ansible-first-playbook-example/&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;When you copy and paste this into your editor, VSCode for me, those quotation mark characters are copied as unicode characters U+201C and U+201D. Assible doesn't seem to like these so produces the error you reported above.&lt;/P&gt;&lt;P&gt;The solution is to replace these with normal quotation marks, unicode U+0022.&lt;/P&gt;&lt;P&gt;Hope that helps anyone else that is falling at the first hurdle on their NetApp with Ansible journey!.&lt;/P&gt;</description>
      <pubDate>Thu, 07 Sep 2023 13:46:27 GMT</pubDate>
      <guid>https://community.netapp.com/t5/Software-Development-Kit-SDK-and-API-Discussions/Issues-with-ansible-netapp-module-na-ontap-volume-to-create-volume-on-Ontap/m-p/447523#M3276</guid>
      <dc:creator>MarktheSpark</dc:creator>
      <dc:date>2023-09-07T13:46:27Z</dc:date>
    </item>
  </channel>
</rss>

