Azure - BICEP Flashcards
How can I add a comment to a parameter?
@description(‘Cosmos DB account name, max length 44 characters, lowercase’)
How can I add a parameter?
param accountName string = ‘sql-${uniqueString(resourceGroup().id)}’
how can I add a int parameter?
param maxIntervalInSeconds int = 300
How can I add a string parameter?
param databaseName string
From VS-Code how can I compile a .bicep file?
az bicep build –file .\main.bicep
How can I create a .bicep to create a resource group?
Resources:
- resourceGroup:
name: myResourceGroup
location: westus2
properties: {}
How would build a .bicep file form CLI?
bicep build mytemplate.bicep
How do we measure standard units of Azure Compute?
Using comp[ute, since compute unite, is a standard measurement of the performance of the compute mode and can be used when selecting a compute node.
What do we get in the (B) series of compute?
We get burst capabilities.
What types of compute hardware processors are available, if the first one is intel?
Intel, AMD, ARM
What are the different compute types available?
A: Entry level, economic,
B: Burst
D: General
F: Compute-optimized
G: Memory and storage optimized
H: High-performance compute
L: Storage optimized
E: Memory optimized
What is Gen 1 VM?
This is a BIOS-based VM thet boots using the bios, master boot record.
Can you automatically switch from Gen 1 to Gen 2 VM?
No, there are different boot requirements on the disk
What VM type do I need to use if I need a trusted launch?
It would be best if you used a Gen 2 VM
Can you use the app service from now on HTTP protocols?
No, you can not, it is an HTTP/HTTPS-only service
When you app service do you need to provide a separate load balancer?
No, the service comes with a load balancer thet load balances across instances.
Do Azure App services only support a single framework of C#
No, it supports a wide range of frameworks, including PHP, .NET, Python, Node, Java, and PowerShell.
Do you have to patch the Azure App Service platform?
No, patching is preformed by Az\ur4e as it is a PaaS service.
How and when are Azure App service OS updates applied?
Azure manages OS patching on two levels: the physical servers and the guest virtual machines (VMs) that run the App Service resources. Both are updated monthly, aligning with the monthly Patch Tuesday schedule. These updates are applied automatically, guaranteeing the high-availability SLA of Azure services.
I have a docker container, and wh