This setting was added in Profound.js / Profound API version 7
This setting is used along with connectorUser to specify IBM i credentials for remote IBM i connections. These settings are an alternative to connectorCredentials and allow the credentials to be loaded from sources other than the local file system.
Examples
Specify Directly in Config.js
Code Block |
---|
"connectorPassword": "my_password" |
Load from environment
The value can also be loaded from other sources using custom JavaScript coding. For example, to load from an environment variable:
Code Block |
---|
"connectorPassword": process.env.CONNECTOR_PASSWORD |
Click here for information on how to modify this setting.
...