Skip to content

Instantly share code, notes, and snippets.

@booyaa
Created July 1, 2020 17:55
Show Gist options
  • Save booyaa/d9301103219993d77145a204ef66b84b to your computer and use it in GitHub Desktop.
Save booyaa/d9301103219993d77145a204ef66b84b to your computer and use it in GitHub Desktop.
$WebAppResourceGroup = '...'
$WebAppName = '...'
$HealthCheckUrl = '/healthcheck'
$Resource = Get-AzResource `
-ResourceType Microsoft.Web/sites `
-ResourceGroupName $WebAppResourceGroup `
-ResourceName $WebAppName
$Resource.Properties.siteConfig.healthCheckPath = $HealthCheckUrl
$$Resource | Set-AzResource -Force
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment