chilly-analyst-14900
09/07/2022, 8:01 PMGetSecret.Invoke()
. But I don’t see any function to retrieve the Certificate (I need the thumbprint, for example. Any ideas?az keyvault certificate show --vault <vault> -n <certName> --query "x509ThumbprintHex" -o tsv
Pulumi.Command
had a stdout. Resolves my issue.
var getThumb = new Command("getThumb", new CommandArgs
{
Create = "az keyvault certificate show --vault $VAULT -n $NAME --query \"x509ThumbprintHex\" -o tsv",
Environment =
{
{ "NAME", certName },
{ "VAULT", vault.Name },
},
});
melodic-tomato-39005
09/08/2022, 6:35 PMUsers should use the data-plane REST service for interaction with vault secrets.Glad you found another way. Using the Azure SDK would be another one.
chilly-analyst-14900
09/12/2022, 5:50 PM