├── Azure-CLI-Cheatsheet.md ├── Demo-Code ├── AppService.json ├── Attacks.txt ├── CertPolicy.json ├── LogAnalytics.json ├── WAF-LOG-SAMPLE.json ├── WindowsVM.json ├── ad_admin_sql.cli.txt ├── arm │ ├── azuredeployLogAnalytics.json │ └── resource-creation │ │ ├── azuredeployApp.json │ │ ├── azurelinuxvmdeploy.json │ │ ├── azurewindowsvmdeploy.json │ │ └── commands.ps1 ├── az-cli │ ├── ADE.sh │ ├── AccessPolicies.sh │ ├── AppService.sh │ ├── Certificates.sh │ ├── LogAnalytics.sh │ ├── PrivateEndpoint.sh │ ├── keyvault-custom-role.sh │ └── keyvault.sh ├── blueprints │ ├── artifacts │ │ ├── policyTags.json │ │ ├── roleAssignment.json │ │ ├── vnetTemplate.json │ │ └── vnetTemplateParams.json │ ├── blueprint.json │ ├── blueprintAssignment.json │ └── commands.ps1 ├── demoSQL.txt ├── keyvault │ ├── custom_role.json │ ├── keyvault-custom-role.ps1 │ └── keyvault.ps1 ├── kql │ ├── bookmarkquery.kql │ ├── breakglassdetection.kql │ ├── kql_refresher.kql │ └── livestreamquery.kql └── powershell-scripts │ ├── AccessPolicies.ps1 │ ├── AppService.ps1 │ ├── AzureDiskEncryption.ps1 │ ├── AzurePSCheatSheet.ps1 │ ├── Certificates.ps1 │ ├── CreateRecoveryVault.ps1 │ ├── InitializeDisks.ps1 │ ├── LogAnalytics.ps1 │ ├── PrivateEndpoints.ps1 │ ├── addNSG.ps1 │ ├── azure-powershell-resourcecreation-cmds.ps1 │ ├── azureAD │ ├── azure-ad-roles.ps1 │ ├── azure-custom-rbac-role.ps1 │ ├── azure-service-principal.ps1 │ ├── azuread-pim.ps1 │ └── create-aad-user-group.ps1 │ ├── azureIaaS │ ├── app-security-group.ps1 │ ├── application-gateway.ps1 │ ├── azure-disk-encryption.ps1 │ ├── change-vm-avail-set.ps1 │ ├── convert-to-managed-disk.ps1 │ ├── create-vm-from-snapshot.ps1 │ ├── create-vm-image.ps1 │ ├── deploy-waf.ps1 │ ├── get-vm-skus.ps1 │ ├── manage-azure-vms.ps1 │ ├── nsg-asg.ps1 │ ├── private dns zone.ps1 │ ├── replace-vnic.ps1 │ └── restore-disks-create-vm.ps1 │ ├── demos.ps1 │ ├── forcedtunnel.ps1 │ ├── linux │ ├── NewLinuxVM-KEK.ps1 │ ├── linux-vm-data-disk.json │ └── linuxVM.ps1 │ ├── remove-workspace.ps1 │ └── windows │ ├── ExistingWindowsVM.ps1 │ └── windows-vm-data-disk.json ├── Implement-Platform-Protection.md ├── Manage-Security-Operations.md ├── Managed-Identity-And-Access.md ├── README.md └── Secure-Data-and-Applications.md /Azure-CLI-Cheatsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Azure-CLI-Cheatsheet.md -------------------------------------------------------------------------------- /Demo-Code/AppService.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/AppService.json -------------------------------------------------------------------------------- /Demo-Code/Attacks.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/Attacks.txt -------------------------------------------------------------------------------- /Demo-Code/CertPolicy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/CertPolicy.json -------------------------------------------------------------------------------- /Demo-Code/LogAnalytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/LogAnalytics.json -------------------------------------------------------------------------------- /Demo-Code/WAF-LOG-SAMPLE.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/WAF-LOG-SAMPLE.json -------------------------------------------------------------------------------- /Demo-Code/WindowsVM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/WindowsVM.json -------------------------------------------------------------------------------- /Demo-Code/ad_admin_sql.cli.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/ad_admin_sql.cli.txt -------------------------------------------------------------------------------- /Demo-Code/arm/azuredeployLogAnalytics.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/arm/azuredeployLogAnalytics.json -------------------------------------------------------------------------------- /Demo-Code/arm/resource-creation/azuredeployApp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/arm/resource-creation/azuredeployApp.json -------------------------------------------------------------------------------- /Demo-Code/arm/resource-creation/azurelinuxvmdeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/arm/resource-creation/azurelinuxvmdeploy.json -------------------------------------------------------------------------------- /Demo-Code/arm/resource-creation/azurewindowsvmdeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/arm/resource-creation/azurewindowsvmdeploy.json -------------------------------------------------------------------------------- /Demo-Code/arm/resource-creation/commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/arm/resource-creation/commands.ps1 -------------------------------------------------------------------------------- /Demo-Code/az-cli/ADE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/ADE.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/AccessPolicies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/AccessPolicies.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/AppService.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/AppService.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/Certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/Certificates.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/LogAnalytics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/LogAnalytics.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/PrivateEndpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/PrivateEndpoint.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/keyvault-custom-role.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/keyvault-custom-role.sh -------------------------------------------------------------------------------- /Demo-Code/az-cli/keyvault.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/az-cli/keyvault.sh -------------------------------------------------------------------------------- /Demo-Code/blueprints/artifacts/policyTags.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/artifacts/policyTags.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/artifacts/roleAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/artifacts/roleAssignment.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/artifacts/vnetTemplate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/artifacts/vnetTemplate.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/artifacts/vnetTemplateParams.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/artifacts/vnetTemplateParams.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/blueprint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/blueprint.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/blueprintAssignment.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/blueprintAssignment.json -------------------------------------------------------------------------------- /Demo-Code/blueprints/commands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/blueprints/commands.ps1 -------------------------------------------------------------------------------- /Demo-Code/demoSQL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/demoSQL.txt -------------------------------------------------------------------------------- /Demo-Code/keyvault/custom_role.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/keyvault/custom_role.json -------------------------------------------------------------------------------- /Demo-Code/keyvault/keyvault-custom-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/keyvault/keyvault-custom-role.ps1 -------------------------------------------------------------------------------- /Demo-Code/keyvault/keyvault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/keyvault/keyvault.ps1 -------------------------------------------------------------------------------- /Demo-Code/kql/bookmarkquery.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/kql/bookmarkquery.kql -------------------------------------------------------------------------------- /Demo-Code/kql/breakglassdetection.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/kql/breakglassdetection.kql -------------------------------------------------------------------------------- /Demo-Code/kql/kql_refresher.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/kql/kql_refresher.kql -------------------------------------------------------------------------------- /Demo-Code/kql/livestreamquery.kql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/kql/livestreamquery.kql -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/AccessPolicies.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/AccessPolicies.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/AppService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/AppService.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/AzureDiskEncryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/AzureDiskEncryption.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/AzurePSCheatSheet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/AzurePSCheatSheet.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/Certificates.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/Certificates.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/CreateRecoveryVault.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/CreateRecoveryVault.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/InitializeDisks.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/InitializeDisks.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/LogAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/LogAnalytics.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/PrivateEndpoints.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/PrivateEndpoints.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/addNSG.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/addNSG.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azure-powershell-resourcecreation-cmds.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azure-powershell-resourcecreation-cmds.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureAD/azure-ad-roles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureAD/azure-ad-roles.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureAD/azure-custom-rbac-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureAD/azure-custom-rbac-role.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureAD/azure-service-principal.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureAD/azure-service-principal.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureAD/azuread-pim.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureAD/azuread-pim.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureAD/create-aad-user-group.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureAD/create-aad-user-group.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/app-security-group.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/app-security-group.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/application-gateway.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/application-gateway.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/azure-disk-encryption.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/azure-disk-encryption.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/change-vm-avail-set.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/change-vm-avail-set.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/convert-to-managed-disk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/convert-to-managed-disk.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/create-vm-from-snapshot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/create-vm-from-snapshot.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/create-vm-image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/create-vm-image.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/deploy-waf.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/deploy-waf.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/get-vm-skus.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/get-vm-skus.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/manage-azure-vms.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/manage-azure-vms.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/nsg-asg.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/nsg-asg.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/private dns zone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/private dns zone.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/replace-vnic.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/replace-vnic.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/azureIaaS/restore-disks-create-vm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/azureIaaS/restore-disks-create-vm.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/demos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/demos.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/forcedtunnel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/forcedtunnel.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/linux/NewLinuxVM-KEK.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/linux/NewLinuxVM-KEK.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/linux/linux-vm-data-disk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/linux/linux-vm-data-disk.json -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/linux/linuxVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/linux/linuxVM.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/remove-workspace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/remove-workspace.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/windows/ExistingWindowsVM.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/windows/ExistingWindowsVM.ps1 -------------------------------------------------------------------------------- /Demo-Code/powershell-scripts/windows/windows-vm-data-disk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Demo-Code/powershell-scripts/windows/windows-vm-data-disk.json -------------------------------------------------------------------------------- /Implement-Platform-Protection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Implement-Platform-Protection.md -------------------------------------------------------------------------------- /Manage-Security-Operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Manage-Security-Operations.md -------------------------------------------------------------------------------- /Managed-Identity-And-Access.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Managed-Identity-And-Access.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | Study Material for AZ500 Certification 3 | 4 | -------------------------------------------------------------------------------- /Secure-Data-and-Applications.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnarly-cl0s/AZ-500CheatSheet/HEAD/Secure-Data-and-Applications.md --------------------------------------------------------------------------------