getScailoClientForVaultService function
Get the client to access the Vault service
Implementation
VaultServiceClient getScailoClientForVaultService() {
return VaultServiceClient(
getClientChannel(),
options: CallOptions(
metadata: {'auth_token': getAuthToken()},
timeout: const Duration(seconds: 10),
),
);
}