Are there any azure powershell command to get connection string for redis cache like 'Get-AzRedisCacheKey'?
I want to create secrets in my ps1. But if I get key for redis and concat connection string like:
$secretValue = $RedisName + '.' + $RedisEndpoint + ':xxxx,password=' + $keysFromRC.$KeyName + ',ssl=True,abortConnect=False'
git push will fail: 'The push was rejected because it might contain one or more secrets.' Or are there any way to push my file?