Day 34 - Hands On with Azure

This commit is contained in:
Michael Cade
2022-02-03 18:17:08 +00:00
parent dc32dcec31
commit 2387b7c03e
50 changed files with 851 additions and 5 deletions

View 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 }