I am deploying an environment for my Logic Apps (standard if that matters) using Terraform, this includes the necessary secrets that I put in the keyvault to add as references in the environment variables.
There is just one problem, after the Terraform script, I have to manually click on the button
“Pull reference values”
Thats not good, and so far I can’t find a way in terraform to do that. After some research I found that I can probably do a manual http call to the API with “data” or a null_resource with provisioners, but apparently those are to be used as a last resort.
Any idea?
Thanks