Is it possible to get a list of WebApps that exist in a given resource group during an ARM template deployment? If so, how?
If I ask for all the properties of the resource group using an output in my template I get only {"provisioningState":"Succeeded"}
.
"outputs": {
"rg": {
"type": "Object",
"value": "[resourceGroup().properties]"
}
}
Scenario: Trying to create App Gateway path-based rules for every web app automatically as apps are added to an App Service Plan.