https://pulumi.com logo
h

high-answer-18213

10/11/2021, 9:52 AM
hi! i'm using the Pulumi REST API to get the state of my stack in another application. Now i need to be able to decrypt secrets too. I am using the default secret provider but i can't seem to find any docs on how to actually reverse the cipher or what cipher is used. Where can i find info on this?
b

brave-planet-10645

10/11/2021, 10:45 AM
You can't use the API to decrypt secrets. Only the CLI will do that (since you can use the console, but a different secret provider). You can however build your own API that uses the automation API to get secret values and use that
h

high-answer-18213

10/11/2021, 10:50 AM
I actually went through the cli source and followed the code path until i found what is was looking for. backend/httpstate/client/client.go:368 is exactly what i was looking for. Got it working 🙂 thanks anyway 🙂
2 Views