├── .gitignore ├── AZ303.pdf ├── Friday ├── Lab 1 │ └── README.md ├── Lab 2 │ └── README.md ├── Lab 3 │ └── README.md ├── Lab 4 │ └── README.md └── README.md ├── Monday ├── Lab 1 │ └── README.md ├── Lab 2 │ ├── New-CustomRbacRole.ps1 │ └── README.md ├── Lab 3 │ ├── New-LabUser.ps1 │ └── README.md ├── Lab 4 │ └── README.md └── README.md ├── README.md ├── Thursday ├── Lab 1 │ └── README.md ├── Lab 2 │ └── README.md ├── Lab 3 │ └── README.md ├── Lab 4 │ └── README.md ├── Lab 5 │ └── README.md └── README.md ├── Tuesday ├── Lab 1 │ ├── README.md │ └── update.reg ├── Lab 2 │ └── README.md ├── Lab 3 │ └── README.md ├── Lab 4 │ ├── New-DataDiskStripeSet.ps1 │ └── README.md └── README.md └── Wednesday ├── Lab 1 ├── README.md └── WindowsWebServer.ps1 ├── Lab 2 ├── Invoke-AutomationWebhook.ps1 ├── LegacyRunbook.ps1 ├── New-ServicePrincipal.ps1 ├── README.md ├── VMRunbook-Snapshot.ps1 └── VMRunbook-Stop.ps1 ├── Lab 3 └── README.md ├── Lab 4 └── README.md ├── Lab 5 └── README.md ├── Lab 6 └── README.md └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | # Mac Folder Junk 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /AZ303.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/AZ303.pdf -------------------------------------------------------------------------------- /Friday/Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Friday/Lab 1/README.md -------------------------------------------------------------------------------- /Friday/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Friday/Lab 2/README.md -------------------------------------------------------------------------------- /Friday/Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Friday/Lab 3/README.md -------------------------------------------------------------------------------- /Friday/Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Friday/Lab 4/README.md -------------------------------------------------------------------------------- /Friday/README.md: -------------------------------------------------------------------------------- 1 | # Azure Solutions Architect Masterclass 2 | 3 | Friday hands-on labs -------------------------------------------------------------------------------- /Monday/Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 1/README.md -------------------------------------------------------------------------------- /Monday/Lab 2/New-CustomRbacRole.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 2/New-CustomRbacRole.ps1 -------------------------------------------------------------------------------- /Monday/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 2/README.md -------------------------------------------------------------------------------- /Monday/Lab 3/New-LabUser.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 3/New-LabUser.ps1 -------------------------------------------------------------------------------- /Monday/Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 3/README.md -------------------------------------------------------------------------------- /Monday/Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Monday/Lab 4/README.md -------------------------------------------------------------------------------- /Monday/README.md: -------------------------------------------------------------------------------- 1 | # Azure Solutions Architect Masterclass 2 | 3 | Monday hands-on labs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/README.md -------------------------------------------------------------------------------- /Thursday/Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Thursday/Lab 1/README.md -------------------------------------------------------------------------------- /Thursday/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Thursday/Lab 2/README.md -------------------------------------------------------------------------------- /Thursday/Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Thursday/Lab 3/README.md -------------------------------------------------------------------------------- /Thursday/Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Thursday/Lab 4/README.md -------------------------------------------------------------------------------- /Thursday/Lab 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Thursday/Lab 5/README.md -------------------------------------------------------------------------------- /Thursday/README.md: -------------------------------------------------------------------------------- 1 | # Azure Solutions Architect Masterclass 2 | 3 | Thursday hands-on labs -------------------------------------------------------------------------------- /Tuesday/Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 1/README.md -------------------------------------------------------------------------------- /Tuesday/Lab 1/update.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 1/update.reg -------------------------------------------------------------------------------- /Tuesday/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 2/README.md -------------------------------------------------------------------------------- /Tuesday/Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 3/README.md -------------------------------------------------------------------------------- /Tuesday/Lab 4/New-DataDiskStripeSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 4/New-DataDiskStripeSet.ps1 -------------------------------------------------------------------------------- /Tuesday/Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Tuesday/Lab 4/README.md -------------------------------------------------------------------------------- /Tuesday/README.md: -------------------------------------------------------------------------------- 1 | # Azure Solutions Architect Masterclass 2 | 3 | Tuesday hands-on labs -------------------------------------------------------------------------------- /Wednesday/Lab 1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 1/README.md -------------------------------------------------------------------------------- /Wednesday/Lab 1/WindowsWebServer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 1/WindowsWebServer.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 2/Invoke-AutomationWebhook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/Invoke-AutomationWebhook.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 2/LegacyRunbook.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/LegacyRunbook.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 2/New-ServicePrincipal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/New-ServicePrincipal.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/README.md -------------------------------------------------------------------------------- /Wednesday/Lab 2/VMRunbook-Snapshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/VMRunbook-Snapshot.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 2/VMRunbook-Stop.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 2/VMRunbook-Stop.ps1 -------------------------------------------------------------------------------- /Wednesday/Lab 3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 3/README.md -------------------------------------------------------------------------------- /Wednesday/Lab 4/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 4/README.md -------------------------------------------------------------------------------- /Wednesday/Lab 5/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 5/README.md -------------------------------------------------------------------------------- /Wednesday/Lab 6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mikepfeiffer/azure-arch-masterclass/HEAD/Wednesday/Lab 6/README.md -------------------------------------------------------------------------------- /Wednesday/README.md: -------------------------------------------------------------------------------- 1 | # Azure Solutions Architect Masterclass 2 | 3 | Wednesday hands-on labs --------------------------------------------------------------------------------