├── .gitignore ├── ARM templates ├── 101-aci-vnet │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-aks │ ├── .ci_skip │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-application-gateway-v2-autoscale-create │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-functions-managed-identity │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-storage-account-create │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-vm-simple-windows │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 101-webapp-basic-windows │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 201-2-vms-loadbalancer-lbrules │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json ├── 201-sql-auditing-server-policy-to-blob-storage │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ └── metadata.json └── active-directory-new-domain-ha-2-dc │ ├── .gitignore │ ├── DSC │ ├── ConfigureADBDC.ps1 │ ├── ConfigureADBDC.zip │ ├── CreateADPDC.ps1 │ ├── CreateADPDC.zip │ ├── PrepareADBDC.ps1 │ └── PrepareADBDC.zip │ ├── README.md │ ├── azuredeploy.json │ ├── azuredeploy.parameters.json │ ├── metadata.json │ └── nestedtemplates │ ├── configureADBDC.json │ ├── nic.json │ ├── vnet-with-dns-server.json │ └── vnet.json ├── AZ-103-104 Study Resources.md ├── Day 1 labs.md ├── Day 2 labs.md ├── Images ├── aadds-overview.png ├── adds-extend-domain.png ├── architecture-regulated-multitier-app.png ├── azure-ad.png ├── basic-web-app.png ├── classroom-reference-diagram.png ├── dmz-private.png ├── hub-spoke.png ├── management-scopes.png ├── multi-region-sql-server.png ├── multi-region-web-app-diagram.png ├── n-tier-sql-server.png ├── single-nva.png ├── single-vm-diagram.png ├── vnet-peering-lab.png ├── vnet-peering.png └── vnet_service_endpoints_overview.png ├── README.md ├── az-104-topologies.vsdx ├── az103-104-practice.pptx ├── azure-classroom-reference-diagram.vsdx ├── compute.png ├── cover.png ├── identity.png ├── monitoring.jpg ├── network.png ├── powershell ├── application-security-groups.ps1 ├── convert-vhd.ps1 ├── create-aks-cluster.ps1 ├── custom-rbac-role.ps1 ├── custom-role-cogan.ps1 ├── enforce-tag-value-rg.json ├── linux-vm-ssh-keys.ps1 ├── managed-storage-account.ps1 ├── networking.ps1 ├── storage-account.ps1 ├── taxonomic-tags.ps1 └── validate-deploy-arm-template.ps1 ├── storage.png └── warner-AZ-104.pptx /.gitignore: -------------------------------------------------------------------------------- 1 | ~$warner-AZ103.pptx 2 | -------------------------------------------------------------------------------- /ARM templates/101-aci-vnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aci-vnet/README.md -------------------------------------------------------------------------------- /ARM templates/101-aci-vnet/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aci-vnet/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-aci-vnet/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aci-vnet/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-aci-vnet/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aci-vnet/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-aks/.ci_skip: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ARM templates/101-aks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aks/README.md -------------------------------------------------------------------------------- /ARM templates/101-aks/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aks/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-aks/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aks/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-aks/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-aks/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-application-gateway-v2-autoscale-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-application-gateway-v2-autoscale-create/README.md -------------------------------------------------------------------------------- /ARM templates/101-application-gateway-v2-autoscale-create/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-application-gateway-v2-autoscale-create/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-application-gateway-v2-autoscale-create/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-application-gateway-v2-autoscale-create/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-application-gateway-v2-autoscale-create/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-functions-managed-identity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-functions-managed-identity/README.md -------------------------------------------------------------------------------- /ARM templates/101-functions-managed-identity/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-functions-managed-identity/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-functions-managed-identity/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-functions-managed-identity/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-functions-managed-identity/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-functions-managed-identity/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-storage-account-create/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-storage-account-create/README.md -------------------------------------------------------------------------------- /ARM templates/101-storage-account-create/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-storage-account-create/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-storage-account-create/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-storage-account-create/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-storage-account-create/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-storage-account-create/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-vm-simple-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-vm-simple-windows/README.md -------------------------------------------------------------------------------- /ARM templates/101-vm-simple-windows/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-vm-simple-windows/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-vm-simple-windows/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-vm-simple-windows/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-vm-simple-windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-vm-simple-windows/metadata.json -------------------------------------------------------------------------------- /ARM templates/101-webapp-basic-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-webapp-basic-windows/README.md -------------------------------------------------------------------------------- /ARM templates/101-webapp-basic-windows/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-webapp-basic-windows/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/101-webapp-basic-windows/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-webapp-basic-windows/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/101-webapp-basic-windows/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/101-webapp-basic-windows/metadata.json -------------------------------------------------------------------------------- /ARM templates/201-2-vms-loadbalancer-lbrules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-2-vms-loadbalancer-lbrules/README.md -------------------------------------------------------------------------------- /ARM templates/201-2-vms-loadbalancer-lbrules/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-2-vms-loadbalancer-lbrules/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-2-vms-loadbalancer-lbrules/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/201-2-vms-loadbalancer-lbrules/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-2-vms-loadbalancer-lbrules/metadata.json -------------------------------------------------------------------------------- /ARM templates/201-sql-auditing-server-policy-to-blob-storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-sql-auditing-server-policy-to-blob-storage/README.md -------------------------------------------------------------------------------- /ARM templates/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-sql-auditing-server-policy-to-blob-storage/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/201-sql-auditing-server-policy-to-blob-storage/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/201-sql-auditing-server-policy-to-blob-storage/metadata.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/.gitignore: -------------------------------------------------------------------------------- 1 | azuredeploy.parameters.local.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.ps1 -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/ConfigureADBDC.zip -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.ps1 -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/CreateADPDC.zip -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.ps1 -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/DSC/PrepareADBDC.zip -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/README.md -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/azuredeploy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/azuredeploy.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/azuredeploy.parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/azuredeploy.parameters.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/metadata.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/metadata.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/configureADBDC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/configureADBDC.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/nic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/nic.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/vnet-with-dns-server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/vnet-with-dns-server.json -------------------------------------------------------------------------------- /ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/vnet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/ARM templates/active-directory-new-domain-ha-2-dc/nestedtemplates/vnet.json -------------------------------------------------------------------------------- /AZ-103-104 Study Resources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/AZ-103-104 Study Resources.md -------------------------------------------------------------------------------- /Day 1 labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Day 1 labs.md -------------------------------------------------------------------------------- /Day 2 labs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Day 2 labs.md -------------------------------------------------------------------------------- /Images/aadds-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/aadds-overview.png -------------------------------------------------------------------------------- /Images/adds-extend-domain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/adds-extend-domain.png -------------------------------------------------------------------------------- /Images/architecture-regulated-multitier-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/architecture-regulated-multitier-app.png -------------------------------------------------------------------------------- /Images/azure-ad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/azure-ad.png -------------------------------------------------------------------------------- /Images/basic-web-app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/basic-web-app.png -------------------------------------------------------------------------------- /Images/classroom-reference-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/classroom-reference-diagram.png -------------------------------------------------------------------------------- /Images/dmz-private.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/dmz-private.png -------------------------------------------------------------------------------- /Images/hub-spoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/hub-spoke.png -------------------------------------------------------------------------------- /Images/management-scopes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/management-scopes.png -------------------------------------------------------------------------------- /Images/multi-region-sql-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/multi-region-sql-server.png -------------------------------------------------------------------------------- /Images/multi-region-web-app-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/multi-region-web-app-diagram.png -------------------------------------------------------------------------------- /Images/n-tier-sql-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/n-tier-sql-server.png -------------------------------------------------------------------------------- /Images/single-nva.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/single-nva.png -------------------------------------------------------------------------------- /Images/single-vm-diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/single-vm-diagram.png -------------------------------------------------------------------------------- /Images/vnet-peering-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/vnet-peering-lab.png -------------------------------------------------------------------------------- /Images/vnet-peering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/vnet-peering.png -------------------------------------------------------------------------------- /Images/vnet_service_endpoints_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/Images/vnet_service_endpoints_overview.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/README.md -------------------------------------------------------------------------------- /az-104-topologies.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/az-104-topologies.vsdx -------------------------------------------------------------------------------- /az103-104-practice.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/az103-104-practice.pptx -------------------------------------------------------------------------------- /azure-classroom-reference-diagram.vsdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/azure-classroom-reference-diagram.vsdx -------------------------------------------------------------------------------- /compute.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/compute.png -------------------------------------------------------------------------------- /cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/cover.png -------------------------------------------------------------------------------- /identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/identity.png -------------------------------------------------------------------------------- /monitoring.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/monitoring.jpg -------------------------------------------------------------------------------- /network.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/network.png -------------------------------------------------------------------------------- /powershell/application-security-groups.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/application-security-groups.ps1 -------------------------------------------------------------------------------- /powershell/convert-vhd.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/convert-vhd.ps1 -------------------------------------------------------------------------------- /powershell/create-aks-cluster.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/create-aks-cluster.ps1 -------------------------------------------------------------------------------- /powershell/custom-rbac-role.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/custom-rbac-role.ps1 -------------------------------------------------------------------------------- /powershell/custom-role-cogan.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/custom-role-cogan.ps1 -------------------------------------------------------------------------------- /powershell/enforce-tag-value-rg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/enforce-tag-value-rg.json -------------------------------------------------------------------------------- /powershell/linux-vm-ssh-keys.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/linux-vm-ssh-keys.ps1 -------------------------------------------------------------------------------- /powershell/managed-storage-account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/managed-storage-account.ps1 -------------------------------------------------------------------------------- /powershell/networking.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/networking.ps1 -------------------------------------------------------------------------------- /powershell/storage-account.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/storage-account.ps1 -------------------------------------------------------------------------------- /powershell/taxonomic-tags.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/taxonomic-tags.ps1 -------------------------------------------------------------------------------- /powershell/validate-deploy-arm-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/powershell/validate-deploy-arm-template.ps1 -------------------------------------------------------------------------------- /storage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/storage.png -------------------------------------------------------------------------------- /warner-AZ-104.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothywarner/azure-admin-crash-course/HEAD/warner-AZ-104.pptx --------------------------------------------------------------------------------