Hello, nice to e-meet you all, I was just trying to provide a new db connection to a tenant I previously created (no problem with that), but when I tried to perform
https://supertokens.com/docs/multitenancy/new-tenant#providing-additional-configuration-per-tenant
> curl --location --request PUT 'http://localhost:3567/recipe/multitenancy/tenant' \
> --header 'api-key:
' \
> --header 'Content-Type: application/json' \
> --data-raw '{
> "tenantId": "customer1",
> "coreConfig": {
> "email_verification_token_lifetime": 7200000,
> "password_reset_token_lifetime": 3600000,
> "postgresql_connection_uri": "postgresql://localhost:5432/db2"
> }
> }'
of course with our tenantId, an error occurred:
Invalid core config: Invalid config key: postgresql_connection_uri
can anyone help me?