mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-07-24 06:40:29 +07:00
Day 34 - Hands On with Azure
This commit is contained in:
7
Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1
Normal file
7
Days/Cloud/04Serverless/Mod09a_90DaysOfDevOps.ps1
Normal file
@ -0,0 +1,7 @@
|
||||
$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 }
|
Reference in New Issue
Block a user