Vault
Disable LDAP root credential rotation
You can temporarily disable root rotation with the
disable_automated_rotation
paramter in your plugin configuration.
If you use rotation_period, disabling rotation also resets the credential
TTL.
Update your configuration to disable rotation:
{ "schema": "ad", "binddn": "<ldap_username>", "bindpass": "<ldap_password>", "url": "<ldap_server_uri>", "disable_automated_rotation": "true" }For example:
{ "schema": "ad", "binddn": "cn=admin,dc=abc,dc=com", "bindpass": "iamabadpassword", "url": "ldaps://138.91.247.105", "disable_automated_rotation": "true" }
Apply the changes.
Use
vault writewith the{mount_path}/configpath to apply yourldap.jsonconfiguration file:$ vault write <mount_path>/config @ldap.jsonFor example:
$ vault write devcreds/config @ldap.json