Public/ps1/Configuration/Install-LeftConnectRemoteControllerSQL.ps1

function Install-LeftConnectRemoteControllerSQL
{    
    [CmdletBinding()]
    param(
        [Parameter(Mandatory)]
        [String]$Tenant,
        
        [System.Management.Automation.PSCredential]
        $Credential = $(Get-Credential),

        [Parameter(Mandatory)]
        [String]$SqlConnectionString,

        [String] $LogFolder

    )
        
    
    Set-ConfigurationValue -name SqlConnectionString -value $SqlConnectionString -secure

    Install-LeftConnectionBase -Tenant $Tenant -Credential $Credential -LogFolder $LogFolder

    Log("LeftConnect + SQL installed")
}