#na_ontap_net_subnet module

1 messages · Page 1 of 1 (latest)

hollow grail
#

having an issue with adding new subnet range to existing subnet. i broke this down to it's simplest form using hardcoded values for the parameters. the following is the code snippet., error recieved.

  • name: Check If SVM Mgmt IP Should be added to Applicable Routeable Mgmt Subnet
    netapp.ontap.na_ontap_net_subnet:
    state: present
    hostname: "{{ netapp_ip }}"
    username: "{{ netapp_user }}"
    password: "{{ netapp_password }}"
    subnet: 10.102.59.0/26
    name: 10.102.59.0/26
    ipranges: 10.102.59.30
    gateway: 10.102.59.1
    ipspace: Default
    broadcast_domain: 10.102.59.0/26

TASK [Check If SVM Mgmt IP Should be added to Applicable Routeable Mgmt Subnet] ***********************************************************************************************************************
fatal: [localhost]: FAILED! => {"changed": false, "msg": "Unsupported parameters for (netapp.ontap.na_ontap_net_subnet) module: ipranges Supported parameters include: broadcast_domain, cert_filepath, feature_flags, force_ontap_version, from_name, gateway, hostname, http_port, https, ip_ranges, ipspace, key_filepath, name, ontapi, password, state, subnet, use_rest, username, validate_certs"}

PLAY RECAP ********************************************************************************************************************************************************************************************
localhost : ok=16 changed=1 unreachable=0 failed=1 skipped=2 rescued=0 ignored=0

pale dragon