How can I add the authentication info into ingesti...
# all-things-deployment
s
How can I add the authentication info into ingestion yaml file?
b
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