Azure Portal Flashcards

1
Q

A focused and organized view of your cloud resources in the Azure portal.
You can build a custom one, based on your main needs.

A

Azure Dashboard

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

Does an Azure Dashboard support markdown?

A

Yes, it possible thanks to the Markdown widget

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

How can you verify that a containerized application is ready to handle incoming requests, for example by loading a large data set during startup?

A

You should configure a readiness probe, that behaves like a Kubernetes readiness probe

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

Which list of users can be allowed to use an app registered in Azure Active Directory (AD)

A

The options available are:
* Accounts in the same organizational directory.
* Accounts in any organizational directory.
* Accounts in any organizational directory and Microsoft Accounts (personal).
* Microsoft Accounts (Personal accounts only).

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

What should be created for a newly application on Azure AD?

A

You need at least one client secret

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

What does an entity need to access resources?

A

It needs a Security Principal

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

What must know an entity to access resources?

A

It must know:
* TenantID
* ApplicationID
* Client Secret

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

Which two managed identities are available on Azure?

A
  • System-assigned - the identity is assigned directly to the Azure resource
  • User-assigned - you can assign a user identity to one or more resources.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is Azure CLI? Where does it run?

A

Azure CLI is a command line that lets you manage Azure resources through a console. It can be run on browser through Azure or using a terminal in Windows (command prompt) or MacOS and Linux (Bash)

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

How are divided commands in Azure CLI?

A

Commands are divided in groups and subgroups
* groups - represent a service provided by Azure (e.g. web-app VM)
* subgroups - represent what commands can be launched on an Azure resource

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

Which steps do you use to create an Azure resource using Azure CLI?

A
  1. Connect through Azure CLI az login
  2. Generally you want to host resources in a resource group. If you don’t have one, you proceed with creating one az group create --name <rgName> --location <location>
  3. Verify if resource group exist by listing all the resource groups available in your subscription. Use table output for an ordered list az group list --output table
  4. If you need any other resource repeat the steps, for example, if you want a new Storage account you can launch the command az storage account create --resource-group <rgName> --name <saName> --location <location>
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Which kind of service help you control your traffic in Azure, since is a DNS-based traffic load balancer that direct client requests to appropriate endpoint, based on IP, DNS or physical location

A

Azure Traffic Manager

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

Azure Traffic Manager option in which you want to use a primary service endpoint for all traffic

A

Priority

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

Azure Traffic Manager option in which you distribute traffic across multiple endpoints, according to weights or evenly

A

Weighted

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

Azure Traffic Manager option in which you want the closest endpoint for the lowest latency

A

Performance

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

Azure Traffic Manager option in which users are directed to specific endpoints based on their geographic region

A

Geographic

17
Q

Azure Traffic Manager option in which you handle IPv4/IPv6 addresses as endpoints

A

Multivalue

18
Q

Azure Traffic Manager option in which sets of end-user IP address ranges are mapped to a specific endpoint

A

Subnet

19
Q

An Azure product that automates cloud provisiong, config management and app deploy for virtual machines, containers and other cloud infrastructures

A

Ansible

20
Q

Which task in Azure Key Vault will let you download secrets?

A

Download Azure Key Vault secrets.

Azure Key Vault v2
- task: AzureKeyVault@2
inputs:
azureSubscription: # string. (required)
KeyVaultName: # string. (required)
SecretsFilter: ‘*’ # string. (Required.)
//SecretsFilter Default: *.
RunAsPreJob: false # boolean.
//Make secrets available to whole job. Default: false.