Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
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
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing
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

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 a Packt Subscription?

Free for first 7 days. $19.99 p/m after that. Cancel any time!
Product feature icon Unlimited ad-free access to the largest independent learning library in tech. Access this title and thousands more!
Product feature icon 50+ new titles added per month, including many first-to-market concepts and exclusive early access to books as they are being written.
Product feature icon Innovative learning tools, including AI book assistants, code context explainers, and text-to-speech.
Product feature icon Thousands of reference materials covering every tech concept you need to stay up to date.
Subscribe now
View plans & pricing

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
€18.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
€189.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
€264.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 104.97
Azure DevOps Server 2019 Cookbook
€41.99
Azure Networking Cookbook
€29.99
Microsoft Azure Administrator ??? Exam Guide AZ-103
€32.99
Total 104.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

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Full star icon Half star icon Empty star icon 3.5
(15 Ratings)
5 star 53.3%
4 star 6.7%
3 star 6.7%
2 star 6.7%
1 star 26.7%
Filter icon Filter
Top Reviews

Filter reviews by




Eldert Grootenboer Aug 01, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Review SjoukjeExcellent exam guide, lining out the information needed to prepare for the AZ-103 exam. All topics of the exam come by, and a good understanding is built for the various services and products. More information can be found through the linked references, helping to built up more knowledge on those topics where it's needed.Overall the book is very well written, allowing for easy reading. Moreover, the extensive use of samples and screeshots ensure all information is transferred. Would recommend this guide if you want to have a thorough preperation on this exam.I was one of the first readers of the content as a technical reviewer, and I found that this exam guide is well written and contains the information to prepare for the AZ-103 exam, including the links to further readings. Note that in a hard copy version of the book, the links are a challenge - there are quite a few of them.Sjoukje describes all the exam topics in various chapters in a pleasant way and provides an excellent introduction of each. The text includes how to enable certain services and configuration. The mock questions at the end are an excellent primer for preparing for the exam.
Amazon Verified review Amazon
Amazon Customer Aug 05, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
As a technical reviewer for this book, I found this book to be a great resource for those preparing for the AZ-103 exam. Sjoukje did a great job on covering all exam topics in a pleasant and organized way that makes it easy for the reader to navigate through the book.I really appreciate the moc questions included in this book as it provides a quick way to evaluate and test what you've learned.
Amazon Verified review Amazon
AL Oct 11, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Considering that Azure is continuously changing and updating, this book is giving you a good structured way to start learning Azure. Unlike few years ago, these tech books are more of a starting point for then to google around and/or going to youTube for more in depth info on specific topics. At the same time, it will be very useful if you need to seat for the ever changing exams.
Amazon Verified review Amazon
Andreas Helland Aug 22, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Microsoft has been working hard the past year revamping the Azure certification tracks, and unless you happen to know eveything about the topic already you are likely to need some assistance landing it all.All the bullet points you need are technically speaking listed on Microsoft's pages, but most likely these will not actually help you much towards your goal. Sjoukje's book is certainly of more help.The areas and individual topics are covered in a logical order. For instance it starts off with the basics of subscriptions, RBAC, etc. before getting into the nitty gritty of creating resources. Along the way examples are given as to how you can perform a series of sample tasks. Sometimes in Powershell, sometimes with screenshots from the Azure Portal. Having your computer nearby would probably be recommended, although some of the samples are understandable as a pure mental exercise.At the end of each chapter are a bunch of links to the official docs - sure I could have found these through a search engine or browsing docs.microsoft.com myself, but it does take less time when someone has done the work already. In the old days you would have these huge books that covered everything (Internet in the Windows NT days was a different experience), and I would love to see books like that again. Unfortunately we're realistically not going to see that again, and as such I'm not seeing other ways the author could have solved this without "sending you off" to other locations along the way even if it breaks the linearity. I must admit I haven't actually read all the links myself, but that's a "risk" on my part when preparing for exams. This does mean you cannot rely on this book alone, but along with the links you should be able to get there. (Microsoft Press would usually distinguish between "exam guides/references" and "training guides" which went into more details. Since it required way more effort to write these they would usually be published way after the exam became available.)I realize there is a limit to how much detail the author can go into with regards to the specifics of the exam questions, and I realize Microsoft can ask questions in a lot of different ways to throw you off, but it can sometimes be challenging memorizing long lists of Powershell parameters. And what is the "right" way to solve things - would I use Powershell or the Azure CLI? Ideally all samples could have been available with screenshots and both scripting flavors. But this is just me going into nitpicking mode - the important thing is still covering things on a higher level, and I do feel that is being done here :)
Amazon Verified review Amazon
Atul Jun 22, 2020
Full star icon Full star icon Full star icon Full star icon Full star icon 5
Nice book, simple language
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

What is included in a Packt subscription? Chevron down icon Chevron up icon

A subscription provides you with full access to view all Packt and licnesed content online, this includes exclusive access to Early Access titles. Depending on the tier chosen you can also earn credits and discounts to use for owning content

How can I cancel my subscription? Chevron down icon Chevron up icon

To cancel your subscription with us simply go to the account page - found in the top right of the page or at https://subscription.packtpub.com/my-account/subscription - From here you will see the ‘cancel subscription’ button in the grey box with your subscription information in.

What are credits? Chevron down icon Chevron up icon

Credits can be earned from reading 40 section of any title within the payment cycle - a month starting from the day of subscription payment. You also earn a Credit every month if you subscribe to our annual or 18 month plans. Credits can be used to buy books DRM free, the same way that you would pay for a book. Your credits can be found in the subscription homepage - subscription.packtpub.com - clicking on ‘the my’ library dropdown and selecting ‘credits’.

What happens if an Early Access Course is cancelled? Chevron down icon Chevron up icon

Projects are rarely cancelled, but sometimes it's unavoidable. If an Early Access course is cancelled or excessively delayed, you can exchange your purchase for another course. For further details, please contact us here.

Where can I send feedback about an Early Access title? Chevron down icon Chevron up icon

If you have any feedback about the product you're reading, or Early Access in general, then please fill out a contact form here and we'll make sure the feedback gets to the right team. 

Can I download the code files for Early Access titles? Chevron down icon Chevron up icon

We try to ensure that all books in Early Access have code available to use, download, and fork on GitHub. This helps us be more agile in the development of the book, and helps keep the often changing code base of new versions and new technologies as up to date as possible. Unfortunately, however, there will be rare cases when it is not possible for us to have downloadable code samples available until publication.

When we publish the book, the code files will also be available to download from the Packt website.

How accurate is the publication date? Chevron down icon Chevron up icon

The publication date is as accurate as we can be at any point in the project. Unfortunately, delays can happen. Often those delays are out of our control, such as changes to the technology code base or delays in the tech release. We do our best to give you an accurate estimate of the publication date at any given time, and as more chapters are delivered, the more accurate the delivery date will become.

How will I know when new chapters are ready? Chevron down icon Chevron up icon

We'll let you know every time there has been an update to a course that you've bought in Early Access. You'll get an email to let you know there has been a new chapter, or a change to a previous chapter. The new chapters are automatically added to your account, so you can also check back there any time you're ready and download or read them online.

I am a Packt subscriber, do I get Early Access? Chevron down icon Chevron up icon

Yes, all Early Access content is fully available through your subscription. You will need to have a paid for or active trial subscription in order to access all titles.

How is Early Access delivered? Chevron down icon Chevron up icon

Early Access is currently only available as a PDF or through our online reader. As we make changes or add new chapters, the files in your Packt account will be updated so you can download them again or view them online immediately.

How do I buy Early Access content? Chevron down icon Chevron up icon

Early Access is a way of us getting our content to you quicker, but the method of buying the Early Access course is still the same. Just find the course you want to buy, go through the check-out steps, and you’ll get a confirmation email from us with information and a link to the relevant Early Access courses.

What is Early Access? Chevron down icon Chevron up icon

Keeping up to date with the latest technology is difficult; new versions, new frameworks, new techniques. This feature gives you a head-start to our content, as it's being created. With Early Access you'll receive each chapter as it's written, and get regular updates throughout the product's development, as well as the final course as soon as it's ready.We created Early Access as a means of giving you the information you need, as soon as it's available. As we go through the process of developing a course, 99% of it can be ready but we can't publish until that last 1% falls in to place. Early Access helps to unlock the potential of our content early, to help you start your learning when you need it most. You not only get access to every chapter as it's delivered, edited, and updated, but you'll also get the finalized, DRM-free product to download in any format you want when it's published. As a member of Packt, you'll also be eligible for our exclusive offers, including a free course every day, and discounts on new and popular titles.