I'm curious if the output from a deployment can be...
# azure
m
I'm curious if the output from a deployment can be pushed to something like Azure App Configuration, to automatically push app settings and/or secrets? We're working on solving this today in Azure DevOps using Terraform -> Azure App Config, but was wondering if this would be easier with Pulumi?
t
So, there's no dedicated resource for App Configuration values yet, but you could use the Azure SDK directly inside your Pulumi program to add those values, as a workaround.
Btw, I don't see an issue in the Terraform provider for this. Consider adding one.
m
Great thanks. I'll look into that