Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / dellemc / openmanage / playbooks / idrac / idrac_user.yml
Size: Mime:
---
- hosts: idrac
  connection: local
  name: Configure the iDRAC users attributes
  gather_facts: False

  collections:
    - dellemc.openmanage

  tasks:
  - name: Configure the create iDRAC users attributes
    idrac_user:
       idrac_ip: "{{ idrac_ip }}"
       idrac_user: "{{ idrac_user }}"
       idrac_password: "{{ idrac_password }}"
       ca_path: "/path/to/ca_cert.pem"
       state: "present"
       user_name: "user_name"
       user_password: "user_password"
       privilege: "Administrator"
       ipmi_lan_privilege: "User"
       enable: "true"
       sol_enable: "true"
       protocol_enable: "true"
       authentication_protocol: "MD5"
       privacy_protocol: "DES"
    tags:
      - create-user

  - name: Configure the modify iDRAC users attributes
    idrac_user:
       idrac_ip: "{{ idrac_ip }}"
       idrac_user: "{{ idrac_user }}"
       idrac_password: "{{ idrac_password }}"
       ca_path: "/path/to/ca_cert.pem"
       action: "present"
       user_name: "user_name"
       new_user_name: "new_user_name"
       privilege: "Administrator"
       ipmi_lan_privilege: "User"
       enable: "true"
       sol_enable: "true"
       protocol_enable: "true"
       authentication_protocol: "MD5"
       privacy_protocol: "DES"
    tags:
      - modify-user

  - name: Configure the modify iDRAC username and password attributes.
    idrac_user:
       idrac_ip: "{{ idrac_ip }}"
       idrac_user: "{{ idrac_user }}"
       idrac_password: "{{ idrac_password }}"
       ca_path: "/path/to/ca_cert.pem"
       action: "present"
       user_name: "user_name"
       new_user_name: "new_user_name"
       user_password: "user_password"
    tags:
      - modify-username

  - name: Configure the delete iDRAC users attributes
    idrac_user:
       idrac_ip: "{{ idrac_ip }}"
       idrac_user: "{{ idrac_user }}"
       idrac_password: "{{ idrac_password }}"
       ca_path: "/path/to/ca_cert.pem"
       state: "absent"
       user_name: "user_name"
    tags:
      - remove-user