Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

Latest commit

 

History

History
30 lines (24 loc) · 931 Bytes

config.md

File metadata and controls

30 lines (24 loc) · 931 Bytes

MS-SQL Tap Config Settings

This page documents the various settings supported by tap-mssql.

Available Settings

setting description
host The SQL Server IP address or server name.
port The port to use when connecting.
database The database name.
user The user name for connection.
password The user name for connection.
ssl 'True' to use SSL, otherwise 'False.
  • [TK - TODO: How is log-based replication configured?]
  • [TK - TODO: Any other configurable settings?]

Sample settings.json file

{
  "host": "mytestsqlserver.cqaqbfvfo67k.us-east-1.rds.amazonaws.com",
  "port": "1433",
  "database": "sales_db",
  "user": "automation_user",
  "password": "t0p-sEcr3t!",
  "ssl": true
}