How can I add the authentication info into ingestion yaml file?
b
bumpy-needle-3184
07/19/2022, 6:01 AM
Hi, you can directly put the authentication in ingestion yaml or create environment variable like "*MSSQL_PASSWORD*" and pass it value in yaml as shown below
Copy code
source:
type: mssql
config:
username: sa
password: ${MSSQL_PASSWORD}
database: DemoData