├── .github └── ISSUE_TEMPLATE.md ├── ARM_Templates └── example.json ├── PowerShell ├── AzureRM-Basic.ps1 ├── AzureRM-DSC_CustomScript.ps1 ├── AzureRM-RBAC.ps1 ├── AzureRM-SqlDatabase.ps1 ├── AzureRM-Storage.ps1 ├── AzureRM-VMCreation.ps1 ├── AzureRM-VMDiskEncryption.ps1 ├── AzureRM-VMScaleSet.ps1 ├── AzureRM-VMandLoadBalancer.ps1 ├── AzureRM-WebApp.ps1 ├── iisInstall.ps1 └── myScript.ps1 ├── README.md ├── role-custom.json ├── role.json └── test.txt /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /ARM_Templates/example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/ARM_Templates/example.json -------------------------------------------------------------------------------- /PowerShell/AzureRM-Basic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-Basic.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-DSC_CustomScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-DSC_CustomScript.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-RBAC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-RBAC.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-SqlDatabase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-SqlDatabase.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-Storage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-Storage.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-VMCreation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-VMCreation.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-VMDiskEncryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-VMDiskEncryption.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-VMScaleSet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-VMScaleSet.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-VMandLoadBalancer.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-VMandLoadBalancer.ps1 -------------------------------------------------------------------------------- /PowerShell/AzureRM-WebApp.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/AzureRM-WebApp.ps1 -------------------------------------------------------------------------------- /PowerShell/iisInstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/PowerShell/iisInstall.ps1 -------------------------------------------------------------------------------- /PowerShell/myScript.ps1: -------------------------------------------------------------------------------- 1 | "Hello from " + $env:COMPUTERNAME | Out-File C:\inetpub\wwwroot\index.html 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/README.md -------------------------------------------------------------------------------- /role-custom.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/role-custom.json -------------------------------------------------------------------------------- /role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrik23/70-533-Implementing-Microsoft-Azure-Infrastructure-Solutions-Exam-Prep/HEAD/role.json -------------------------------------------------------------------------------- /test.txt: -------------------------------------------------------------------------------- 1 | test for 70-533 --------------------------------------------------------------------------------