ADPasswordChangeValve

Valve for modifying a users password in Microsoft Active Directory.

The new password will be formatted as an AD password - a binary UTF-16 LE string (little-endian byte order) enclosed in double quotes (“).

Valve operates on all items in current item set.

Properties

Name Description Default value Mandatory Supports property expansion
connection_ref Id of user store connection.   Yes No
value The new password.   Yes Yes
password_attr_name Name of password attribute. unicodePwd   No
unlock Flag controlling if locked account should be unlocked during password change process. false   No

Example Configuration

{
  "name": "ADPasswordChangeValve",
  "config": { 
    "connection_ref": "d5c9fd4f-0e51-43d4-b1c5-b3e34b6edd4b",
    "value": "{{item.new_password}}",
    "unlock": "true"
  }
}

Requirements