Merge pull request #3068 from nicogiard/patch-1

fix: wrong client variable in c# code example
This commit is contained in:
Daniel Hougaard
2025-01-29 22:24:03 +01:00
committed by GitHub

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}");