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?

A

No

20
Q

Can resource groups be renamed?

A

No

21
Q

Can resource groups contain different types of resources?

A

Yes

22
Q

Can resource groups contain resources from different regions?

A

Yes

23
Q

Can resources within a resource group have different lifecycles?

A

No

24
Q

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

A

Yes

25
Q

Can resources be moved between resource groups?

A

Yes

26
Q

Can a resource group be used to scope access control for administration?

A

Yes

27
Q

Can resources in different resource groups have interactions?

A

Yes

28
Q

Why do resource groups need a location?

A

Specifies where the metadata is stored.

29
Q

What protects resources from accidental deletion in Azure?

A

Resource Manager Locks

30
Q

Read-Only lock

A

Prevents any change to the resource.

31
Q

Delete lock

A

Prevents deletion.

32
Q

What does it mean to “lock” a resource group?

A

You can’t add, update, or delete resources in the resource group.

33
Q

What effect does moving a resource between resource groups have?

A

It locks the affected resource groups.

34
Q

When deleting a resource group, what else is deleted?

A

Resourced contained within

35
Q

What Powershell cmdlet removes a resource group?

A

Remove-AzResourceGroup

36
Q

Can you delete resources from within a resource group?

A

Yes

37
Q

Is there a maximum limit for Azure resources?

A

Yes

38
Q

What Resource tab shows resource limits?

A

Usage + Quotas

39
Q

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

A

Azure resource groups

40
Q

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

A ExpressRoute circuit with connectivity back to the on-premises network.

41
Q

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.

A

Resources can be in only one resource group.