- Release notes
- Getting started
- Installation
- Configuration
- Integrations
- Authentication
- Working with Apps and Discovery Accelerators
- AppOne menus and dashboards
- AppOne setup
- TemplateOne 1.0.0 menus and dashboards
- TemplateOne 1.0.0 setup
- TemplateOne menus and fashboards
- TemplateOne 2021.4.0 setup
- Purchase to Pay Discovery Accelerator menus and dashboards
- Purchase to Pay Discovery Accelerator Setup
- Order to Cash Discovery Accelerator menus and dashboards
- Order to Cash Discovery Accelerator Setup
- Basic Connector for AppOne
- SAP Connectors
- Introduction to SAP Connector
- SAP input
- Checking the data in the SAP Connector
- Adding process specific tags to the SAP Connector for AppOne
- Adding process specific Due dates to the SAP Connector for AppOne
- Adding automation estimates to the SAP Connector for AppOne
- Adding attributes to the SAP Connector for AppOne
- Adding activities to the SAP Connector for AppOne
- Adding entities to the SAP Connector for AppOne
- SAP Order to Cash Connector for AppOne
- SAP Purchase to Pay Connector for AppOne
- SAP Connector for Purchase to Pay Discovery Accelerator
- SAP Connector for Order-to-Cash Discovery Accelerator
- Superadmin
- Dashboards and charts
- Tables and table items
- Application integrity
- How to ....
- Working with SQL connectors
- Introduction to SQL connectors
- Setting up a SQL connector
- CData Sync extractions
- Running a SQL connector
- Editing transformations
- Releasing a SQL Connector
- Scheduling data extraction
- Structure of transformations
- Using SQL connectors for released apps
- Generating a cache with scripts
- Setting up a local test environment
- Separate development and production environments
- Useful resources
Use a Credential store
The credential store allows you to use passwords without showing the actual password. The credential store works for passwords in the Server Settings and in connection strings.
{"credential": [Identifier]}
.
MailSettings
with a password from the credential store. The following MailSettings
structure is used in this example:
"MailSettings":{
"SMTP":"my.mailserver.com",
"port": "25",
"username": "user1",
"password": "s3cr3tp4ssw0rd",
}
"MailSettings":{
"SMTP":"my.mailserver.com",
"port": "25",
"username": "user1",
"password": "s3cr3tp4ssw0rd",
}
PasswordIdentifier
with value "s3cr3tp4ssw0rd"
.
Follow these steps to use the credential store in the Server Settings.
Step |
Action |
---|---|
1 |
Replace the password line of your password with the following:
|
2 |
Save (Control + S) and refresh. |
MailSettings
will now use the password retrieved from a credential store and developers can no longer see the actual password being used.
mv-credential-Pass
keyword instead of the Pass
keyword.
Below is an example of how to replace a password in the connection string with a password from the credential store. This assumes there is a connection string with the following expression:
'DSN=MyDSN; User=MyUser; Pass=MyPass;'
PasswordIdentifier
and value "s3cr3tp4ssw0rd"
.
Follow these steps to replace a password in the connection string with a password from the credential store.
Step |
Action |
---|---|
1 |
Replace the connection string with the following:
|
2 |
Save (
Control + S ) the application and refresh.
|
The password used for executing the connection string will now use the password retrieved from a credential store and developers can no longer see the actual password being used.