fix: wrong client variable

The InfisicalClient variable was wrong
This commit is contained in:
Nicolas Giard
2025-01-29 21:57:57 +01:00
committed by GitHub
parent 09521144ec
commit 1175b9b5af

View File

@@ -42,7 +42,7 @@ namespace Example
ProjectId = "PROJECT_ID",
Environment = "dev",
};
var secret = infisical.GetSecret(getSecretOptions);
var secret = infisicalClient.GetSecret(getSecretOptions);
Console.WriteLine($"The value of secret '{secret.SecretKey}', is: {secret.SecretValue}");