YAML for Microsoft SQL Server
Microsoft SQL Server target for executing queries on an MSSQL database.
YAML examples for Microsoft SQL Server
Microsoft SQL Server target with full certificate validation
yaml- target: production_mssql type: MSSQL name: Production MSSQL host: mssql.example.com port: "1433" database: app ssl_mode: VERIFY_FULL ca_certificate: |- -----BEGIN CERTIFICATE----- MIIDdzCCAl+gAwIBAgIEexampleCAcertificateENCODEDinPEMformat -----END CERTIFICATE----- auth: username: app_user password: $password proxy: my_ssh_bastion tags: - mssql - production
Minimal
yaml- target: production_mssql type: MSSQL host: mssql.example.com auth: username: app_user password: $password