Use Azure Resource Manager Flashcards

1
Q

What enables you to work with Azure resources as a group?

A

Azure Resource Manager

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Name three actions that Azure Resource Manager enables you to perform against groups.

A
  1. Deploy
  2. Update
  3. Delete
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Name three solutions that Azure Resource Manager provides to manage resources.

A
  1. Security
  2. Auditing
  3. Tagging
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What five tools use Azure Resource Manager to provide a consistent management experience?

A
  1. Azure PowerShell
  2. Azure CLI
  3. Azure portal
  4. REST API
  5. Client SDKs
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

RBAC

A

Role-Based Access Control

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

In Azure Resource Manager, what replaces scripts?

A

Declarative templates

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Resource

A

A manageable item that is available through Azure.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Name examples of Azure “resources”.

A

i.e. virtual machine, storage account, web app, database, and virtual network

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Resource Group

A

A container that holds related resources for an Azure solution. A logical collection of resources.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Resource Provider

A

A service that supplies the resources you can deploy and manage through Resource Manager.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

Name examples of Azure “resource providers”.

A

Microsoft.Compute
Microsoft.Storage
Microsoft.Web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What resource provider supplies virtual machines?

A

Microsoft.Compute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

What supplies the storage accounts?

A

Microsoft.Storage

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

What resource provider supplies resources for web apps?

A

Microsoft.Web

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

Template

A

A JavaScript Object Notation (JSON) file that defines one or more resources to deploy to a resource group.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

Declarative Syntax

A

Circumvents programming commands with conversational English.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

What resource provider stores keys and secrets and key vaults?

A

Microsoft.KeyVault

18
Q

What is the format used to describe a resource provider with its resource type?

A

{resource-provider}/{resource-type}
i.e. Microsoft.KeyVault/vaults

19
Q

Can resources exist in more than one resource group?

20
Q

Can resource groups be renamed?

21
Q

Can resource groups contain different types of resources?

22
Q

Can resource groups contain resources from different regions?

23
Q

Can resources within a resource group have different lifecycles?

24
Q

Can resources be added or removed from a resource group at any time?

25
Can resources be moved between resource groups?
Yes
26
Can a resource group be used to scope access control for administration?
Yes
27
Can resources in different resource groups have interactions?
Yes
28
Why do resource groups need a location?
Specifies where the metadata is stored.
29
What protects resources from accidental deletion in Azure?
Resource Manager Locks
30
Read-Only lock
Prevents any change to the resource.
31
Delete lock
Prevents deletion.
32
What does it mean to "lock" a resource group?
You can't add, update, or delete resources in the resource group.
33
What effect does moving a resource between resource groups have?
It locks the affected resource groups.
34
When deleting a resource group, what else is deleted?
Resourced contained within
35
What Powershell cmdlet removes a resource group?
Remove-AzResourceGroup
36
Can you delete resources from within a resource group?
Yes
37
Is there a maximum limit for Azure resources?
Yes
38
What Resource tab shows resource limits?
Usage + Quotas
39
A new project has several resources that need to be administered together. Which of the following strategies would provide a good solution? - Azure templates - Azure resource groups - Azure subscriptions
Azure resource groups
40
Which of the following situations would be good example of when to use a resource lock? - A ExpressRoute circuit with connectivity back to the on-premises network. - A non-production virtual machine used to test occasional application builds. - A storage account used to temporarily store images processed in a development environment.
A ExpressRoute circuit with connectivity back to the on-premises network.
41
Which of the following is true about resource groups? - Resources can be in only one resource group. - Role-based access control can't be applied to a resource group - Resource groups can be nested.
Resources can be in only one resource group.