1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/tools/integrations-test-ssl/generate_crts_mssql.sh
masonwheeler a67c769980 MS SQL Server Destination implementation
Fixes issue #613.

Normalization is not yet enabled.  This will have to be added at a later point.
2021-05-17 09:54:52 -06:00

8 lines
179 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
openssl req -x509 -nodes -newkey rsa:2048 -subj '/CN=sqltest.airbyte.com' -keyout mssql.key -out mssql.pem
chmod 440 mssql.pem
chmod 440 mssql.key