Hey all, I'm looking to use pulumi .net and I'd li...
# dotnet
d
Hey all, I'm looking to use pulumi .net and I'd like to capture the output variables so I can call the GitHub API and set some secrets. Is this kinda of stuff possible?
b
Yes you would just write your pulumi program to output the information that you need and use pulumi stack output to fetch it after the deployment
b
You can actually use the GitHub provider and set the GitHub secret directly from your Pulumi program
🚀 1
partypus 8bit 2
🙌 1
b
This is a good all around C# example with automation api https://github.com/gitfool/Pulumi.Dungeon
d
Thanks