$database, "UID" => $userName, "PWD" => $userPassword, "TraceOn" => false, "Driver" => $driver); $daasMode = false; $marsMode = true; $traceEnabled = false; $adServer = 'TARGET_AD_SERVER'; $adDatabase = 'TARGET_AD_DATABASE'; $adUser = 'TARGET_AD_USERNAME'; $adPassword = 'TARGET_AD_PASSWORD'; if (isset($_ENV['MSSQL_SERVER']) || isset($_ENV['MSSQL_USER']) || isset($_ENV['MSSQL_PASSWORD'])) { $server = $_ENV['MSSQL_SERVER']; $uid = $_ENV['MSSQL_USER']; $pwd = $_ENV['MSSQL_PASSWORD']; $databaseName = $_ENV['MSSQL_DATABASE_NAME']; } else { $uid = $userName; $pwd = $userPassword; $databaseName = $database; } // column encryption variables $keystore = "none"; // key store provider, acceptable values are none, win, ksp, akv $dataEncrypted = false; // whether data is to be encrypted // for Azure Key Vault $AKVKeyStoreAuthentication = 'TARGET_AKV_AUTH'; // can be KeyVaultPassword or KeyVaultClientSecret $AKVPrincipalName = 'TARGET_AKV_PRINCIPAL_NAME'; // for use with KeyVaultPassword $AKVPassword = 'TARGET_AKV_PASSWORD'; // for use with KeyVaultPassword $AKVClientID = 'TARGET_AKV_CLIENT_ID'; // for use with KeyVaultClientSecret $AKVSecret = 'TARGET_AKV_CLIENT_SECRET'; // for use with KeyVaultClientSecret // for enclave computations $attestation = 'TARGET_ATTESTATION'; ?>