I am making a powershell script that deploys an app service and changes the configuration automatically.
An example of such configurations are: the platform setting to set the azure platform to 64bit. i changed this with:
$WebAppPropertiesObject = @{"siteConfig" = @{"AlwaysOn" = $true ; "Use32BitWorkerProcess" = $false } ; "ClientAffinityEnabled" = $false }
Set-AzureRmResource -resourceid $prodApp.Id -Properties $WebAppPropertiesObject -Force
Now im looking for the other general settings. but i cant find the correct name and value for the setting.
Does anybody know where i can retrieve these specifications?