0% found this document useful (0 votes)
66 views4 pages

Azure Learning Task With Examples

The document provides information on various Azure tasks and exercises including: 1. Implementing management groups, RBAC roles, and assigning roles. 2. Implementing Azure tags, resource locks, and removing lab resources. 3. Creating and configuring Azure Storage accounts, managing blob storage, authentication, and file shares. 4. Networking tasks like creating VNets, configuring subnets, IPs, routing, peering, and DNS.

Uploaded by

MadhuShalini
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
66 views4 pages

Azure Learning Task With Examples

The document provides information on various Azure tasks and exercises including: 1. Implementing management groups, RBAC roles, and assigning roles. 2. Implementing Azure tags, resource locks, and removing lab resources. 3. Creating and configuring Azure Storage accounts, managing blob storage, authentication, and file shares. 4. Networking tasks like creating VNets, configuring subnets, IPs, routing, peering, and DNS.

Uploaded by

MadhuShalini
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 4

Samples Queries

Task 1: Implement Management Groups


Task 2: Create custom RBAC roles
Task 3: Assign RBAC roles

Exercise 1: Implement Azure tags by using Azure policies and initiatives


Exercise 2: Implement Azure resource locks
Exercise 3: Remove lab resources

Task 1: Create and assign tags via the Azure portal


Task 2: Enforce tagging via an Azure policy
Task 3: Apply tagging via an Azure policy
=====================

Task resource locks no edit option


Task resource delete no delete option

Assign policy by applying to a RG which can inherit to the resources created under
the particular RG

================================
Resource Movement from one RG/subscriptions

for moving managed disk we need to register movement action using below command
"az feature register --namespace Microsoft.compute --name ManagedResourcesMove
( takes 15+mins for registering)
"az feature show --namespace Microsfot.compute --name ManagedResourcesMove (command
to view action taken)
"az provider register --namespace Microsoft.compute
=======================
Create Storage with All types of
"Container(Blob,Container(Private,Blob,Container)), File Share, Queue, Tables
Try using access key, regenerate SAS token and try accessing the file in storage.
=============================
Task 1: Provision the lab environment
Task 2: Create and configure Azure Storage accounts
Task 3: Manage blob storage
Task 4: Manage authentication and authorization for Azure Storage
Task 5: Create and configure an Azure Files shares
Task 6: Manage network access for Azure Storage
================
https://docs.microsoft.com/en-gb/learn/modules/connect-an-app-to-azure-storage/3-
exercise-create-your-app?pivots=csharp
https://docs.microsoft.com/en-gb/learn/modules/store-app-data-with-azure-blob-
storage/
https://docs.microsoft.com/en-gb/learn/modules/secure-azure-storage-account/
https://docs.microsoft.com/en-gb/learn/modules/monitor-diagnose-and-troubleshoot-
azure-storage/
=====================

File Sync
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_07-Manage_Azure_Storage.md
============================

Networking:
https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/

1.Create Simple Vnet


https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md

Task 1: Create and configure a virtual network


Task 2: Deploy virtual machines into the virtual network
Task 3: Configure private and public IP addresses of Azure VMs
Task 4: Configure network security groups
Task 5: Configure Azure DNS for internal name resolution
Task 6: Configure Azure DNS for external name resolution

Topics :
Vnet creation
Subnet addition
Public Ip Address
Network routing
VPNS & Express route
Firewall Configuration

Vnet Peering ( In same location)


Global Vnet Peering( Global Location)
Az-Az Virtual Network Gateway
NetworkGatewayConnection

Task 1: Provision the lab environment


Task 2: Configure local and global virtual network peering
Task 3: Test intersite connectivity

https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_05-Implement_Intersite_Connectivity.md

DNS private & public


https://microsoftlearning.github.io/AZ-104-MicrosoftAzureAdministrator/
Instructions/Labs/LAB_04-Implement_Virtual_Networking.html

https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_04-Implement_Virtual_Networking.md
NSG
https://docs.microsoft.com/en-us/azure/virtual-network/tutorial-filter-network-
traffic

Azure Backup & Recovery Services

https://docs.microsoft.com/en-us/azure/virtual-machines/windows/tutorial-backup-vms
https://github.com/MicrosoftLearning/AZ-103-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/07%20-%20Implement%20ASR%20Between%20Regions%20(az-101-
01).md

https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_10-Implement_Data_Protection.md

Task 1: Provision the lab environment


Task 2: Create a Recovery Services vault
Task 3: Implement Azure virtual machine-level backup
Task 4: Implement File and Folder backup
Task 5: Perform file recovery by using Azure Recovery Services agent
Task 6: Perform file recovery by using Azure virtual machine snapshots (optional)
Task 7: Review the Azure Recovery Services soft delete functionality (optional)

===========================================================================
VMs
Ruzains12345 /sshuser1

How to generate public key for linux vm

Using Az command
"ssh-keygen -t rsa -b 2048" ( Key Type RSA & Key value 2048 bits)
/home/thoufeeque/.ssh/id_rsa ( will be saved in home directory Key Name is "id_rsa"
can be edited
Then copy the key after generating using command "cat ~/.ssh/id_rsa.pub" and paste
in publick key text box

Method 2 we can use putty gen for generating public key

How to connect az-vm using ssh key

ssh sshuser1@publickip (ssh [email protected])

Paste public key while creating vm


Using putty copy public ip & paste private key in auth path then connect.

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
++

ARM

https://github.com/Azure/azure-quickstart-templates -predefined ARM


https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_03b-Manage_Azure_Resources_by_Using_ARM_Templates.md

Backup & Restore


https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_10-Implement_Data_Protection.md
Task 1: Provision the lab environment
Task 2: Create a Recovery Services vault
Task 3: Implement Azure virtual machine-level backup
Task 4: Implement File and Folder backup
Task 5: Perform file recovery by using Azure Recovery Services agent
Task 6: Perform file recovery by using Azure virtual machine snapshots (optional)
Task 7: Review the Azure Recovery Services soft delete functionality (optional)

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

WEB APP

https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_09a-Implement_Web_Apps.md

Task 1: Create an Azure web app


Task 2: Create a staging deployment slot
Task 3: Configure web app deployment settings
Task 4: Deploy code to the staging deployment slot
Task 5: Swap the staging slots
Task 6: Configure and test autoscaling of the Azure web app
AKS
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_09c-Implement_Azure_Kubernetes_Service.md

Docker
https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_09b-Implement_Azure_Container_Instances.md

+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Azure Active Directory

https://github.com/MicrosoftLearning/AZ-104-MicrosoftAzureAdministrator/blob/
master/Instructions/Labs/LAB_01-Manage_Azure_AD_Identities.md

Task 1: Create and configure Azure AD users


Task 2: Create Azure AD groups with assigned and dynamic membership
Task 3: Create an Azure Active Directory (AD) tenant
Task 4: Manage Azure AD guest users

You might also like