Management and Deployment Tools Flashcards

(20 cards)

1
Q

What is the primary service in Azure for deploying and managing resources?

A

Azure Resource Manager (ARM) is the primary service for deploying and managing resources in Azure.

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

What are some key benefits of using Azure Resource Manager (ARM) for resource deployment?

A

Key benefits of using ARM include consistency, convenience, control, confidence, and capability for resource deployment.

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

Describe the Azure portal’s role in managing Azure resources.

A

The Azure portal is a visual interface for deploying, configuring, monitoring, and auditing resources and services in Azure, providing web-based access and visual data.

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

Where can the Azure CLI be installed and used?

A

The Azure CLI can be installed on a local system (Windows, macOS, Linux, and containers) or accessed via Azure Cloud Shell.

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

What kind of command language does the Azure CLI use?

A

The Azure CLI uses a Unix-style command language, which is often terse.

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

What is the syntax paradigm used by Azure PowerShell?

A

Azure PowerShell uses the Verb-Noun paradigm for its syntax.

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

What are some advantages of using Azure Cloud Shell for accessing Azure?

A

Advantages of using Azure Cloud Shell include automatic authentication, choice of shell (Bash or PowerShell), built-in Azure PowerShell and Azure CLI, and direct access to Azure storage.

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

What is the primary purpose of Azure ARM templates?

A

Azure ARM templates are the key tool for provisioning resources in Azure, allowing definition of infrastructure configuration.

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

What format are Azure ARM templates typically written in?

A

Azure ARM templates are typically written in JSON, although Bicep can be used and transpiled into JSON.

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

Name three characteristics of Azure ARM templates.

A

Azure ARM templates are declarative, repeatable, modular, testable, and exportable.

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

What is Azure Resource Manager (ARM)?

A

The service responsible for deploying and managing resources in Azure, providing consistency, convenience, control, confidence, and capability. It acts as the bridge between the user and Azure resources.

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

What is Azure Portal?

A

A visual, web-based interface for deploying, configuring, monitoring, and auditing resources and services in Azure.

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

What is Azure CLI?

A

A compiled, installable set of tools using a Unix-style command language, available in Azure Cloud Shell and installable locally, platform agnostic.

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

What is Azure PowerShell?

A

A set of tools using PowerShell’s Verb-Noun paradigm, usable anywhere PowerShell is installed, with a powerful Help function and interaction with the identity platform.

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

What is Azure Cloud Shell?

A

A browser-based shell environment providing automatic authentication, choice of Bash or PowerShell, built-in Azure PowerShell and Azure CLI, and direct access to Azure storage.

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

What are Azure ARM templates?

A

JSON (or Bicep transpiled to JSON) files used to define and provision infrastructure configuration in Azure. They are declarative, repeatable, modular, testable, and exportable.

17
Q

What is JSON?

A

JavaScript Object Notation, a lightweight data-interchange format often used for configuration files like Azure ARM templates.

18
Q

What is Bicep?

A

A domain-specific language (DSL) for deploying Azure resources declaratively, which is transpiled into JSON ARM templates.

19
Q

What is a Declarative?

A

A programming paradigm where you declare the desired state of the system, and the tool figures out how to achieve that state. ARM templates are declarative.

20
Q

What are Cmdlets?

A

Lightweight commands used in PowerShell to perform specific tasks.