-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
End to End TLS SSL step #3 #16773
End to End TLS SSL step #3 #16773
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most things look good to me. I think it would be very helpful if these PRs had a brief description of what changes were made to look out for them, especially when there's another unmerged PR this is based on.
@@ -83,13 +82,13 @@ public KeyVaultKeyStore() { | |||
String tenantId = System.getProperty("azure.keyvault.tenantId"); | |||
String clientId = System.getProperty("azure.keyvault.clientId"); | |||
String clientSecret = System.getProperty("azure.keyvault.clientSecret"); | |||
keyVault = new KeyVaultClient(keyVaultUri, tenantId, clientId, clientSecret); | |||
keyVaultClient = new KeyVaultClient(keyVaultUri, tenantId, clientId, clientSecret); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keyVaultClient = new KeyVaultClient(keyVaultUri, tenantId, clientId, clientSecret); | |
keyVaultClient = new KeyVaultClient(keyVaultUrl, tenantId, clientId, clientSecret); |
All occurrences, really :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM.
No description provided.