Hey say I'm creating an `azure.search.Service` and...
# general
f
Hey say I'm creating an
azure.search.Service
and an
azure.appservice.AppService
. I want to create my app service such that its
appSettings
has my search service's Query Key. I can get this Query Key one of two ways: 1. Through an API: https://docs.microsoft.com/en-us/rest/api/searchmanagement/querykeys/listbysearchservice 2. Using the CLI:
az search query-key list -g <my-resource-group> --service-name <my-service>
How should I integrate one of these into a Pulumi script? Thanks! 🙂