Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Save more on your purchases! discount-offer-chevron-icon
Savings automatically calculated. No voucher code required.
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletter Hub
Free Learning
Arrow right icon
timer SALE ENDS IN
0 Days
:
00 Hours
:
00 Minutes
:
00 Seconds
Microsoft Azure Administrator ??? Exam Guide AZ-103
Microsoft Azure Administrator ??? Exam Guide AZ-103

Microsoft Azure Administrator ??? Exam Guide AZ-103: Your in-depth certification guide in becoming Microsoft Certified Azure Administrator Associate

eBook
$9.99 $29.99
Paperback
$43.99
Subscription
Free Trial
Renews at $19.99p/m

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Table of content icon View table of contents Preview book icon Preview Book

Microsoft Azure Administrator ??? Exam Guide AZ-103

Managing Azure Subscriptions and Resource Groups

This book will cover all the exam objectives for the AZ-103 exam. When relevant, we will provide you with extra information and further reading guidance about the different topics in this book.

The first chapter of this book will introduce the first objective, which is how to manage Azure subscriptions and resources. In this chapter, we are going to focus on assigning permissions for administrators so that they can manage your Azure subscriptions and resource groups. You will learn how to configure policies for your Azure subscriptions and resources in order to stay compliant with your organizational standards and SLAs. We are also going to set tagging on resource groups, and you'll learn how to configure cost center quotas and resource locks. To finish this chapter, we will cover how to move resources across different resource...

Azure subscriptions and resource groups

Before we start with the objectives that are required for the exam, which involves how to manage the Azure subscriptions and resource groups, we will cover some high-level information about Azure subscriptions and resource groups.

Azure subscriptions

Azure subscriptions are basically the billing accounts in Azure. Aside from billing, access to the Azure portal and the creation of the different Azure services in the portal are done through the use of Azure subscriptions.

If you look at the Azure account hierarchy, you will see where Azure subscriptions actually fit in. In the following diagram, the account hierarchy is shown:

Account hierarchy in Azure

It is divided into Enterprise...

Assigning administrator permissions

There are two ways to assign administrator permissions to your users. The first is done inside Azure Active Directory and is used to assign global administrator permissions. The second is done by using role-based access control (RBAC) and can be set from the subscription level.

In the following sections, we'll look at both possibilities.

Assigning global administrator permissions

With global administrator permissions, you can manage all subscriptions and management groups. A management group provides a level of scope above permissions and can be used to manage multiple subscriptions together.

When a user is assigned to the global administrator role, it is able to see all Azure subscriptions...

Configuring Azure subscription policies

With Azure Policy, you can create, assign, and manage policies. These policies can be used so that you stay compliant with your corporate standards and SLAs by enforcing different rules and effects over your Azure resources. Your resources are evaluated by the assigned policies for non-compliance. For instance, you can create a policy that only allows virtual machines from a certain SKU size in your environment. When this policy is assigned, all new and existing resources are evaluated for compliance with this policy.

To configure subscription policies, perform the following steps:

  1. Navigate to the Azure portal by opening https://portal.azure.com.
  2. In the left-hand menu, select Subscriptions (this is if you added it to your favorites; otherwise, take the steps that we described in the previous demonstration).
  3. In the Subscriptions overview...

Implementing and setting tagging on resource groups

You can apply tags to all of your Azure resources. This way, you add extra metadata to the resource group, which can be used to logically organize them into a taxonomy. Each tag consists of a name and a value pair. For instance, you can set the name to Environment and the value to Demo, or you can set the name to Maintenance Window and the value to Saturday 9 AM. After applying these tags, you can easily retrieve all the resources with the same tag name and value. This can be a useful feature for billing or management purposes.

For billing based on your tags, you can use the assigned tags to group the billing for certain resources; for example, if you run VMs and databases for different environments (test, pre-production, and production), you can use tags to categorize the costs. These tags will then show up in the different...

Configuring cost center quotas

Quotas in Azure are basically the limits of creating an amount of resources in Azure. For example, there is a limit of 2,000 availability sets that can be created inside an Azure subscription. However, you can contact Microsoft support if you wish to increase this quota. We need to perform the following steps:

  1. Navigate to the Azure portal by opening https://portal.azure.com.
  2. In the left-hand menu, select Subscriptions.
  3. Select the right subscription. In the Subscriptions overview blade, under Settings, select Usage + quotas. There, you can select a provider:
Usage and quotas overview
  1. Select Microsoft.Compute.
  2. You will see the amount of available availability sets for this subscription. If you want to increase this, select the Request Increase button on the right-hand side of the screen:
Increasing quotas
  1. A new blade will open, where you can...

Configuring resource locks

Administrators can set locks on your Azure resources to prevent other users from deleting the resource or making any changes to it. You can set two different lock levels on your subscriptions, resource groups, or resources:

  • CanNotDelete: This level prevents authorized users from deleting the resource. They can still read and modify the resource.
  • ReadOnly: Within this level, authorized users can read a resource, but they cannot delete or update it. This level is similar to assigning all authorized users to the reader role using RBAC.

To apply a lock on your resource group, you have to perform the following steps:

  1. Navigate to the Azure portal by opening https://portal.azure.com.
  2. In the left-hand menu, select Resource groups. Select the resource group that we created in the previous demonstration.
  1. In the Resource Group overview blade, under Settings...

Moving resources across resource groups

You can easily move your resources across different resource groups and subscriptions by using the Azure portal, PowerShell, the CLI, and the REST API. During the move operation, both the source group and the target group are locked. This blocks all write and delete operations on the resource group until the movement is complete. This means that you cannot update, add, or delete resources in the resource group, but the resources aren't frozen. There will be no downtime for these resources. However, the location of the resources will remain the same, even when the new resource group is created in a different location.

There are limitations for moving resources across different resource groups and subscriptions. For instance, a VM with managed disks that is deployed inside an availability zone cannot be moved. For more information about...

Removing resource groups

Resource groups can be removed using the Azure portal, PowerShell, the CLI, and the REST API. You can remove the resource group and all the resources inside of it at once.

In the following demonstration, we are going to remove PacktResourceGroup1, which we used for the previous demonstration:

  1. Navigate to the Azure portal by opening https://portal.azure.com.
  2. In the left-hand menu, select Resource groups. Select PacktResourceGroup1. In the top menu, select Delete resource group:
Deleting a resource group
  1. To confirm that you want to delete the resource group, you have to specify the name. Enter the name of the resource group and select Delete:
Confirm deletion

The resource group will now be deleted.

Summary

In this chapter, we introduced the various aspects of Azure subscriptions and resource groups. We assigned administrator permissions and described how to create policies to stay compliant. We also covered cost center quotas and resource locks. At the end of this chapter, we moved and removed resource groups completely.

In the next chapter, we'll cover the second part of this exam objective by describing how to analyze resource utilization and consumption.

Questions

Answer the following questions to test your knowledge of the information in this chapter. You can find the answers in the Assessments section at the end of this book:

  1. Suppose that you have a VM using managed disks that is deployed inside an availability set, and you want to move resources to another resource group. Is this possible?
    • Yes
    • No
  2. Suppose that you want to create a resource group using PowerShell. Is this possible?
    • Yes
    • No
  3. Suppose that you want to delete a resource group using the CLI. Is this possible?
    • Yes
    • No

Further reading

You can check out the following links for more information about the topics that were covered in this chapter:

Left arrow icon Right arrow icon
Download code icon Download Code

Key benefits

  • Learn features and concepts related to Azure's administration services
  • Gain an understanding of different Azure services related to infrastructure, applications, and environments
  • Test your knowledge by taking mock tests with up-to-date exam questions

Description

Microsoft Azure Administrator – Exam Guide AZ-103 will cover all the exam objectives that will help you achieve Microsoft Azure Administrator certification. Whether you want to pass the AZ-103 exam or simply want hands-on experience in administering Azure, this study guide will help you achieve your goal. It covers the latest features and capabilities related to configuring, managing, and securing Azure resources. Following Microsoft's AZ-103 exam syllabus, this guide is divided into five modules. The first module helps you understand how to manage Azure subscriptions and resources. You will be able to configure Azure subscription policies at Azure subscription level and even learn how to use Azure policies for resource groups. Later, the book covers techniques related to implementing and managing storage in Azure. You will be able to create and configure backup policies and perform restore operations. The next module will guide you through creating, configuring, and deploying virtual machines for Windows and Linux. In the last two modules, you will learn about configuring and monitoring virtual networks and managing identities. The book concludes with effective mock tests, along with answers to them to help you confidently pass the exam. By the end of this book, you will have developed the skills you need to pass Exam AZ-103 and gain the corresponding certification.

Who is this book for?

This book is for Azure administrators, systems administrators or anyone preparing for AZ 103 exam and wants to master Azure's various administration features. Readers should have proficiency in working with PowerShell, CLI and other day-to-day Azure administration tasks.

What you will learn

  • Configure Azure subscription policies and manage resource groups
  • Monitor activity logs by using Log Analytics
  • Modify and deploy Azure Resource Manager (ARM) templates
  • Protect your data with Azure Site Recovery
  • Learn how to manage identities in Azure
  • Monitor and troubleshoot virtual network connectivity
  • Manage Azure Active Directory Connect, password sync, and password writeback
Estimated delivery fee Deliver to Indonesia

Standard delivery 10 - 13 business days

$12.95

Premium delivery 5 - 8 business days

$45.95
(Includes tracking information)

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : May 31, 2019
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781838829025
Vendor :
Microsoft
Tools :

What do you get with Print?

Product feature icon Instant access to your digital eBook copy whilst your Print order is Shipped
Product feature icon Paperback book shipped to your preferred address
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Shipping Address

Billing Address

Shipping Methods
Estimated delivery fee Deliver to Indonesia

Standard delivery 10 - 13 business days

$12.95

Premium delivery 5 - 8 business days

$45.95
(Includes tracking information)

Product Details

Publication date : May 31, 2019
Length: 452 pages
Edition : 1st
Language : English
ISBN-13 : 9781838829025
Vendor :
Microsoft
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
$19.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
$199.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts
$279.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just $5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total $ 137.97
Microsoft Azure Administrator ??? Exam Guide AZ-103
$43.99
Azure Networking Cookbook
$38.99
Azure DevOps Server 2019 Cookbook
$54.99
Total $ 137.97 Stars icon
Banner background image

Table of Contents

25 Chapters
Section 1: Managing Azure Subscriptions and Resources Chevron down icon Chevron up icon
Managing Azure Subscriptions and Resource Groups Chevron down icon Chevron up icon
Analyzing Resource Utilization and Consumption Chevron down icon Chevron up icon
Managing Role-Based Access Control Chevron down icon Chevron up icon
Section 2: Implementing and Managing Storage Chevron down icon Chevron up icon
Creating and Configuring Storage Accounts Chevron down icon Chevron up icon
Importing and Exporting Data to Azure Chevron down icon Chevron up icon
Configuring Azure Files and Implementing Azure Backup Chevron down icon Chevron up icon
Section 3: Deploying and Managing Virtual Machines Chevron down icon Chevron up icon
Creating and Configuring VMs for Windows and Linux Chevron down icon Chevron up icon
Managing Azure VMs and VM Backups Chevron down icon Chevron up icon
Section 4: Deploying and Managing Virtual Networks Chevron down icon Chevron up icon
Implementing and Managing Virtual Networking Chevron down icon Chevron up icon
Integrating On-Premise Networks with Azure Virtual Networks Chevron down icon Chevron up icon
Monitoring and Troubleshooting Virtual Networking Chevron down icon Chevron up icon
Azure Security Groups and Azure DNS Chevron down icon Chevron up icon
Implementing Azure Load Balancer Chevron down icon Chevron up icon
Section 5: Managing Identities Chevron down icon Chevron up icon
Managing Azure Active Directory Chevron down icon Chevron up icon
Implementing and Managing Hybrid Identities Chevron down icon Chevron up icon
Implementing Multi-Factor Authentication Chevron down icon Chevron up icon
Mockup Test Questions Chevron down icon Chevron up icon
Mockup Test Answers Chevron down icon Chevron up icon
Assessments Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon