https://github.com/ukhomeoffice/dq-packer-data-pipeline
https://github.com/ukhomeoffice/dq-packer-data-pipeline
hodq packer
Last synced: 17 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ukhomeoffice/dq-packer-data-pipeline
- Owner: UKHomeOffice
- License: mit
- Created: 2018-01-30T11:31:15.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-25T14:06:30.000Z (over 6 years ago)
- Last Synced: 2025-02-16T21:26:42.385Z (3 months ago)
- Topics: hodq, packer
- Language: PowerShell
- Size: 39.1 KB
- Stars: 0
- Watchers: 17
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# dq-packer-data-pipeline
# Additional install notes
1. Add ODBC connectors at boot in user data with Powershell pulling in creds from RDS
Pseudo code:
Add-OdbcDsn -Name "WSDQ" -DriverName "SQL Server" -DsnType "System" -SetPropertyValue @("Server=MyServer", "Username=admin", "Password=SuperSecr3t", "Port=1443", "Trusted_Connection=Yes", "Database=database_name")
Add-OdbcDsn -Name "HODQ" -DriverName "SQL Server" -DsnType "System" -SetPropertyValue @("Server=MyServer", "Username=admin", "Password=SuperSecr3t", "Port=1433", "Trusted_Connection=Yes", "Database=database_name")
Add-OdbcDsn -Name "MDS" -DriverName "SQL Server" -DsnType "System" -SetPropertyValue @("Server=MyServer", "Username=admin", "Password=SuperSecr3t", "Port=1433", "Trusted_Connection=Yes", "Database=database_name")