mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-01-09 06:36:39 +07:00
7 lines
241 B
PowerShell
7 lines
241 B
PowerShell
$rgName = '90DaysOfDevOps'
|
|
|
|
$webapp = Get-AzWebApp -ResourceGroupName $rgName
|
|
|
|
|
|
#The following following will start an infinite loop that sends the HTTP requests to the web app
|
|
while ($true) { Invoke-WebRequest -Uri $webapp.DefaultHostName } |