Hi Team,
I've created a single node service fabric cluster in the portal. It is secured with a certificate which is placed in keyvault. I've installed my certificate on the my machine for the current user but I still can't connect to the cluster.
I'm trying to connect to the cluster using powershell command:
Connect-ServiceFabricCluster -ConnectionEndpoint '<endpoint>' -KeepAliveIntervalInSec 10 `
-X509Credential `
-ServerCertThumbprint '<certificatethumbprint>' `
-FindType FindByThumbprint `
-FindValue '<certificatethumbprint>' `
-StoreLocation CurrentUser `
-StoreName My `
-Verbose
The error I get:
Is there anything I'm missing. I'm downloading the certificate from the keyvault and installing it as part of the personal folder for current user.