Chapter 1: Azure Administration Flashcards

1
Q

What is the purpose of Azure Resource Manager? What are the 3 interfaces for Azure Resource Manager?

A

Orchestration layer to manage resources in Azure. You can use Azure CLI, Azure Portal, Azure Powershell, Bash.

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

How does Azure ensure your’re only managing the resource for your account? What is the Aure service for managing security?

A

Azure Active Directory

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

What are the 3 steps for performing a change to a resource via Resource Manager? Describe the architecture.

A

ARM template –> Resource Provider –> Resource provider completes action

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

What is the relationship between a resource group and a subscription?

A

Resource groups are grouped logically under a single subscription.
Subscriptions are the billing unit for Azure Cloud. Can do it logically by environment (dev, test, prod).

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

What is the Azure Portal?

A

Web based way to manage resources

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

What is the Azure CLI (Cloud Shell)?

A

Command line utility to manage Azure resources. Don’t need to login to the portal.
Web-based version of the portal.
Can use Azure Bash or Powershell

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

What is the Azure Powershell?

A

Set of cmdlets - more suited for creating small scripts to automate resource management
Accessed through the Cloud Shell
Az group list - list out the list of resources

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

What is Azure Bash?

A

CLI access through Cloud Shell

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

What are ARM templates?

A

JSON files - infrastructure as code (IaC)
Deploy environments quickly
Repeatable deployments

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

What makes ARM template parameters unique? Example?

A

Dynamic - can pass at run-time - such as a username

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

What are ARM template variables? Example?

A

Hard coded. Example - VM size, version, etc.

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

What is the intent of the Resources field?

A

Define resources that we want to define

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

What are Outputs?

A

Returns information from the execution of our template
Ex. return public IP address

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

What is a nested ARM template?

A

ARM template to call another ARM template

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

What is a schema? What does it do for you in azure resource manager?

A

describes the version of the template language. Version dependong on the JSON Editor (VS Code) and scope of the deployment (Subscription Deployments vs. Tenant deployments vs. Management group deployments)

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