Skip to content

aheath1992/nios_adminuser

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 

Repository files navigation

niox_adminuser


Manages Infoblox admin users

Version added: 1.0.0

Synopsis


  • This module allows for the management of Infoblox Local admin accounts.

Parameters


Parameter Comments
user
string/required
Name of the admin user you want to create or update
password
string/required
Password for the admin user you are creating or updating (Can be used to update password for user)
groups
list/required
Group(s) that the admin user is a member of
comment
string
Comment for the admin user.
provider
dictionary
A dict object containing connection details.
-> ibx_hosts
string/required
Specifies the DNS host name or address for connecting to the remote instance of NIOS.
-> ibx_username
string/required
Configures the username to use to authenticate the connection to the remote instance of NIOS.
-> ibx_password
string/required
Specifies the password to use to authenticate the connection to the remote instance of NIOS.

Notes


Note

  • Tested on an Infoblox applience running Version: 8.6.3.

Examples


- name: Create new user
  nios_adminuser:
    user: test-user
    password: password
    groups: test-group
    provider:
      ibx_host: host.example.com
      ibx_username: user
      ibx_password: password
- name: Add a comment to user
  nios_adminuser:
    user: test-user
    password: password
    groups: test-group
    comment: Test comment
    provider:
      ibx_host: host.example.com
      ibx_username: user
      ibx_password: password

Status


Authors


About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages