0

I'm migrating WSO2 Identity Server from version 5.8.0 to 5.10.0 and I'm missing some properties in deployment.toml file. On WSO2 documentation I couldn't find these properties from user-mgt.xml to put in deployment.toml file:

AnonymousBind
TenantManager
UserSearchBase
UsernameJavaScriptRegEx
PasswordJavaScriptRegEx
RolenameJavaScriptRegEx

Have these properties been removed? Documentation 5.10.0

Community
  • 1
  • 1
Aldo Inácio da Silva
  • 824
  • 2
  • 14
  • 38

1 Answers1

1

Use the following configs in deployment.toml file.

[user_store]
anonymous_bind = ""
user_search_base = ""
username_java_script_regex = ""
password_java_script_regex = ""
role_name_java_script_regex = ""

UPDATED SECTION

[user_store.properties]
IsBulkImportSupported = ""
EmptyRolesAllowed = ""
defaultRealmName=""
TenantManager = ""
Anuradha Karunarathna
  • 2,717
  • 2
  • 9
  • 17