Hi Team,
We would like the vault to create/delete users in our mongodb replica set with a specific write concern (w=1).
We added the “write_concern” parameter in the vault connection config as:
write_concern=“{ "w": 1, "wtimeout": 5000 }” but with no effects (we made multiple tests), users are still being created without the writeConcern specified, and deleted with “writeConcern”:{“w”:“majority”,“wtimeout”:0 } (from mongodb logs)
We also tried to put it directly in the connection string of mongo.
We tried with vault version 1.9.0 and 1.12.0 and we are using mongo 5.0
Do you have any advice on this?
Thanks!