sparse-intern-71089
09/07/2022, 8:01 PMchilly-analyst-14900
09/07/2022, 8:03 PMaz keyvault certificate show --vault <vault> -n <certName> --query "x509ThumbprintHex" -o tsv
chilly-analyst-14900
09/07/2022, 8:04 PMchilly-analyst-14900
09/07/2022, 8:11 PMPulumi.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