On this page
netapp.ontap.na_ontap_user – NetApp ONTAP user configuration and management
Note
This plugin is part of the netapp.ontap collection (version 21.12.0).
You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install netapp.ontap.
To use it in a playbook, specify: netapp.ontap.na_ontap_user.
New in version 2.6.0: of netapp.ontap
Synopsis
- Create or destroy users.
 
Requirements
The below requirements are needed on the host that executes this module.
- Ansible 2.9
 - Python3 netapp-lib (2018.11.13) or later. Install using ‘pip install netapp-lib’
 - netapp-lib 2020.3.12 is strongly recommended as it provides better error reporting for connection issues.
 - A physical or virtual clustered Data ONTAP system. The modules support Data ONTAP 9.1 and onward.
 - REST support requires ONTAP 9.6 or later.
 - To enable http on the cluster you must run the following commands ‘set -privilege advanced;’ ‘system services web modify -http-enabled true;’
 
Parameters
| Parameter | Choices/Defaults | Comments | |
|---|---|---|---|
| application_dicts
        
        list / elements=dictionary
        
       
        added in 21.6.0 of netapp.ontap
         | 
      
        
        List of applications to grant access to. Provides better control on applications and authentication methods.
        
       
        Creating a login with application console, telnet, rsh, and service-processor for a data vserver is not supported.
        
       
        Module supports both service-processor and service_processor choices.
        
       
        ZAPI requires service-processor, while REST requires service_processor, except for an issue with ONTAP 9.6 and 9.7.
        
       
        snmp is not supported in REST.
        
       
        Either  application_dicts or application_strs is required.
        | 
     ||
| application
        
        string / required
         | 
      
       
  | 
      
        
        name of the application.
         | 
     |
| authentication_methods
        
        list / elements=string / required
         | 
      
       
  | 
      
        
        list of authentication methods for the application.
         | 
     |
| second_authentication_method
        
        string
         | 
      
       
  | 
      
        
        when using ssh, optional additional authentication method for MFA.
         | 
     |
| application_strs
        
        list / elements=string
        
       
        added in 21.6.0 of netapp.ontap
         | 
      
       
  | 
      
        
        List of applications to grant access to.
        
       
        This option maintains backward compatibility with the existing  
       applications option, but is limited.
       
        It is recommended to use the new  
       application_dicts option which provides more flexibility.
       
        Creating a login with application console, telnet, rsh, and service-processor for a data vserver is not supported.
        
       
        Module supports both service-processor and service_processor choices.
        
       
        ZAPI requires service-processor, while REST requires service_processor, except for an issue with ONTAP 9.6 and 9.7.
        
       
        snmp is not supported in REST.
        
       
        Either  
       application_dicts or application_strs is required.
       aliases: application, applications  | 
     |
| authentication_method
        
        string
         | 
      
       
  | 
      
        
        Authentication method for the application. If you need more than one method, use  
       application_dicts.
       
        Not all authentication methods are valid for an application.
        
       
        Valid authentication methods for each application are as denoted in authentication_choices_description.
        
       
        Password for console application
        
       
        Password, domain, nsswitch, cert for http application.
        
       
        Password, domain, nsswitch, cert for ontapi application.
        
       
        Community for snmp application (when creating SNMPv1 and SNMPv2 users).
        
       
        The usm and community for snmp application (when creating SNMPv3 users).
        
       
        Password for sp application.
        
       
        Password for rsh application.
        
       
        Password for telnet application.
        
       
        Password, publickey, domain, nsswitch for ssh application.
        
       
        Required when  application_strs is present.
        | 
     |
| authentication_password
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        Password for the authentication protocol. This should be minimum 8 characters long.
        
       
        This is required for 'md5', 'sha' and 'sha2-256' authentication protocols and not required for 'none'.
        
       
        Only available for 'usm' authentication method and non modifiable.
         | 
     ||
| authentication_protocol
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
       
  | 
      
        
        Authentication protocol for the snmp user.
        
       
        When cluster FIPS mode is on, 'sha' and 'sha2-256' are the only possible and valid values.
        
       
        When cluster FIPS mode is off, the default value is 'none'.
        
       
        When cluster FIPS mode is on, the default value is 'sha'.
        
       
        Only available for 'usm' authentication method and non modifiable.
         | 
     |
| cert_filepath
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        path to SSL client cert file (.pem).
        
       
        not supported with python 2.6.
         | 
     ||
| engine_id
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        Authoritative entity's EngineID for the SNMPv3 user.
        
       
        This should be specified as a hexadecimal string.
        
       
        Engine ID with first bit set to 1 in first octet should have a minimum of 5 or maximum of 32 octets.
        
       
        Engine Id with first bit set to 0 in the first octet should be 12 octets in length.
        
       
        Engine Id cannot have all zeros in its address.
        
       
        Only available for 'usm' authentication method and non modifiable.
         | 
     ||
| feature_flags
        
        dictionary
        
       
        added in 20.5.0 of netapp.ontap
         | 
      
        
        Enable or disable a new feature.
        
       
        This can be used to enable an experimental feature or disable a new feature that breaks backward compatibility.
        
       
        Supported keys and values are subject to change without notice. Unknown keys are ignored.
         | 
     ||
| hostname
        
        string / required
         | 
      
        
        The hostname or IP address of the ONTAP instance.
         | 
     ||
| http_port
        
        integer
         | 
      
        
        Override the default port (80 or 443) with this port
         | 
     ||
| https
        
        boolean
         | 
      
       
  | 
      
        
        Enable and disable https.
        
       
        Ignored when using REST as only https is supported.
        
       
        Ignored when using SSL certificate authentication as it requires SSL.
         | 
     |
| key_filepath
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        path to SSL client key file.
         | 
     ||
| lock_user
        
        boolean
         | 
      
       
  | 
      
        
        Whether the specified user account is locked.
         | 
     |
| name
        
        string / required
         | 
      
        
        The name of the user to manage.
         | 
     ||
| ontapi
        
        integer
         | 
      
        
        The ontap api version to use
         | 
     ||
| password
        
        string
         | 
      
        
        Password for the specified user.
        
       aliases: pass  | 
     ||
| privacy_password
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        Password for the privacy protocol. This should be minimum 8 characters long.
        
       
        This is required for 'des' and 'aes128' privacy protocols and not required for 'none'.
        
       
        Only available for 'usm' authentication method and non modifiable.
         | 
     ||
| privacy_protocol
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
       
  | 
      
        
        Privacy protocol for the snmp user.
        
       
        When cluster FIPS mode is on, 'aes128' is the only possible and valid value.
        
       
        When cluster FIPS mode is off, the default value is 'none'. When cluster FIPS mode is on, the default value is 'aes128'.
        
       
        Only available for 'usm' authentication method and non modifiable.
         | 
     |
| remote_switch_ipaddress
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
        
        This optionally specifies the IP Address of the remote switch.
        
       
        The remote switch could be a cluster switch monitored by Cluster Switch Health Monitor (CSHM) or a Fiber Channel (FC) switch monitored by Metro Cluster Health Monitor (MCC-HM).
        
       
        This is applicable only for a remote SNMPv3 user i.e. only if user is a remote (non-local) user, application is snmp and authentication method is usm.
         | 
     ||
| replace_existing_apps_and_methods
        
        string
        
       
        added in 20.6.0 of netapp.ontap
         | 
      
       
  | 
      
        
        If the user already exists, the current applications and authentications methods are replaced when state=present.
        
       
        If the user already exists, the current applications and authentications methods are removed when state=absent.
        
       
        When using application_dicts or REST, this the only supported behavior.
        
       
        When using application_strs and ZAPI, this is the behavior when this option is set to always.
        
       
        When using application_strs and ZAPI, if the option is set to auto, applications that are not listed are not removed.
        
       
        When using application_strs and ZAPI, if the option is set to auto, authentication mehods that are not listed are not removed.
        
       auto preserve the existing behavior for backward compatibility, but note that REST and ZAPI have inconsistent behavior.
       
        This is another reason to recommend to use  application_dicts.
        | 
     |
| role_name
        
        string
         | 
      
        
        The name of the role. Required when  state=present
        | 
     ||
| set_password
        
        string
         | 
      
        
        Password for the user account.
        
       
        It is ignored for creating snmp users, but is required for creating non-snmp users.
        
       
        For an existing user, this value will be used as the new password.
         | 
     ||
| state
        
        string
         | 
      
       
  | 
      
        
        Whether the specified user should exist or not.
         | 
     |
| use_rest
        
        string
         | 
      Default: 
        "auto"
         | 
      
        
        REST API if supported by the target system for all the resources and attributes the module requires. Otherwise will revert to ZAPI.
        
       
        always -- will always use the REST API
        
       
        never -- will always use the ZAPI
        
       
        auto -- will try to use the REST Api
         | 
     |
| username
        
        string
         | 
      
        
        This can be a Cluster-scoped or SVM-scoped account, depending on whether a Cluster-level or SVM-level API is required.
        
       
        For more information, please read the documentation https://mysupport.netapp.com/NOW/download/software/nmsdk/9.4/.
        
       
        Two authentication methods are supported
        
       
        1. basic authentication, using username and password,
        
       
        2. SSL certificate authentication, using a ssl client cert file, and optionally a private key file.
        
       
        To use a certificate, the certificate must have been installed in the ONTAP cluster, and cert authentication must have been enabled.
        
       aliases: user  | 
     ||
| validate_certs
        
        boolean
         | 
      
       
  | 
      
        
        If set to  
       no, the SSL certificates will not be validated.
       
        This should only set to  False used on personally controlled sites using self-signed certificates.
        | 
     |
| vserver
        
        string / required
         | 
      
        
        The name of the vserver to use.
        
       
        With REST, for cluster scope, use a vserver entry with no value.
        
       aliases: svm  | 
     ||
Notes
Note
- The modules prefixed with na_ontap are built to support the ONTAP storage platform.
 
Examples
- name: Create User
  netapp.ontap.na_ontap_user:
    state: present
    name: SampleUser
    applications: ssh,console
    authentication_method: password
    set_password: apn1242183u1298u41
    lock_user: True
    role_name: vsadmin
    vserver: ansibleVServer
    hostname: "{{ netapp_hostname }}"
    username: "{{ netapp_username }}"
    password: "{{ netapp_password }}"
- name: Delete User
  netapp.ontap.na_ontap_user:
    state: absent
    name: SampleUser
    applications: ssh
    authentication_method: password
    vserver: ansibleVServer
    hostname: "{{ netapp_hostname }}"
    username: "{{ netapp_username }}"
    password: "{{ netapp_password }}"
- name: Create user with snmp application (ZAPI)
  netapp.ontap.na_ontap_user:
    state: present
    name: test_cert_snmp
    applications: snmp
    authentication_method: usm
    role_name: admin
    authentication_protocol: md5
    authentication_password: '12345678'
    privacy_protocol: 'aes128'
    privacy_password: '12345678'
    engine_id: '7063514941000000000000'
    remote_switch_ipaddress: 10.0.0.0
    vserver: "{{ vserver }}"
    hostname: "{{ hostname }}"
    username: "{{ username }}"
    password: "{{ password }}"
- name: Create user
  netapp.ontap.na_ontap_user:
    state: present
    name: test123
    application_dicts:
      - application: http
        authentication_methods: password
      - application: ssh
        authentication_methods: password,publickey
    role_name: vsadmin
    set_password: bobdole1234566
    vserver: "{{ vserver }}"
    hostname: "{{ hostname }}"
    username: "{{ username }}"
    password: "{{ password }}"
  Authors
- NetApp Ansible Team (@carchi8py) <ng-ansibleteam@netapp.com>
 
© 2012–2018 Michael DeHaan
© 2018–2021 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
 https://docs.ansible.com/ansible/latest/collections/netapp/ontap/na_ontap_user_module.html