community.general.ipa_user module – Manage FreeIPA users
Note
This module is part of the community.general collection (version 10.7.5).
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 community.general.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.general.ipa_user.
Synopsis
- Add, modify and delete user within IPA server. 
Requirements
The below requirements are needed on the host that executes this module.
- base64 
- hashlib 
Parameters
| Parameter | Comments | 
|---|---|
| Display name. | |
| Posix Group ID. | |
| First name. If user does not exist and  | |
| Default home directory of the user. | |
| IP or hostname of IPA server. If the value is not specified in the task, the value of environment variable  If both the environment variable  The relevant entry needed in FreeIPA is the  If neither the DNS entry, nor the environment  Default:  | |
| Password of administrative user. If the value is not specified in the task, the value of environment variable  Note that if the  If the environment variable  If the environment variable  If GSSAPI is not available, the usage of  | |
| Port of FreeIPA / IPA server. If the value is not specified in the task, the value of environment variable  If both the environment variable  Default:  | |
| Protocol used by IPA server. If the value is not specified in the task, the value of environment variable  If both the environment variable  Choices: 
 | |
| Specifies idle timeout (in seconds) for the connection. For bulk operations, you may want to increase this in order to avoid timeout from IPA server. If the value is not specified in the task, the value of environment variable  If both the environment variable  Default:  | |
| Administrative account used on IPA server. If the value is not specified in the task, the value of environment variable  If both the environment variable  Default:  | |
| Date at which the user password expires. In the format YYYYMMddHHmmss. For example  | |
| Login shell. | |
| List of mail addresses assigned to the user. If an empty list is passed all assigned email addresses are deleted. If None is passed email addresses are not checked nor changed. | |
| Password for a user. It is not set for an existing user unless  | |
| Surname. If user does not exist and  | |
| List of public SSH key. If an empty list is passed all assigned public keys are deleted. If None is passed SSH public keys are not checked nor changed. | |
| State to ensure. Choices: 
 | |
| List of telephone numbers assigned to the user. If an empty list is passed all assigned telephone numbers are deleted. If None is passed telephone numbers are not checked nor changed. | |
| Title. | |
| Uid of the user. | |
| Account Settings UID/Posix User ID number. | |
| Set password for a user. Choices: 
 | |
| The authentication type to use for the user. To remove all authentication types from the user, use an empty list  The choice  Choices: 
 | |
| This only applies if  If set to  This should only set to  Choices: 
 | 
Attributes
| Attribute | Support | Description | 
|---|---|---|
| Support: full | Can run in  | |
| Support: none | Will return details on what has changed (or possibly needs changing in  | 
Notes
Note
- This module uses JSON-RPC over HTTP(S) to communicate with the FreeIPA server. If you need to enroll the managed node into FreeIPA realm, you might want to consider using the collection freeipa.ansible_freeipa, but shell access to one node from the realm is required to manage the deployment. 
Examples
- name: Ensure pinky is present and always reset password
  community.general.ipa_user:
    name: pinky
    state: present
    krbpasswordexpiration: 20200119235959
    givenname: Pinky
    sn: Acme
    mail:
      - [email protected]
    telephonenumber:
      - '+555123456'
    sshpubkey:
      - ssh-rsa ....
      - ssh-dsa ....
    uidnumber: '1001'
    gidnumber: '100'
    homedirectory: /home/pinky
    ipa_host: ipa.example.com
    ipa_user: admin
    ipa_pass: topsecret
- name: Ensure brain is absent
  community.general.ipa_user:
    name: brain
    state: absent
    ipa_host: ipa.example.com
    ipa_user: admin
    ipa_pass: topsecret
- name: Ensure pinky is present but don't reset password if already exists
  community.general.ipa_user:
    name: pinky
    state: present
    givenname: Pinky
    sn: Acme
    password: zounds
    ipa_host: ipa.example.com
    ipa_user: admin
    ipa_pass: topsecret
    update_password: on_create
- name: Ensure pinky is present and using one time password and RADIUS authentication
  community.general.ipa_user:
    name: pinky
    state: present
    userauthtype:
      - otp
      - radius
    ipa_host: ipa.example.com
    ipa_user: admin
    ipa_pass: topsecret
Return Values
Common return values are documented here, the following are the fields unique to this module:
| Key | Description | 
|---|---|
| User as returned by IPA API. Returned: always | 
