Conventions used
There are several text conventions used throughout this book.
Code in text
: Indicates code words in the text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "If you want to upgrade your Bicep, you can use the upgrade
command."
A block of code is set as follows:
resource stg 'Microsoft.Storage/storageAccounts@2021-02-01' = { name: 'name' location: resourceGroup().location kind: 'StorageV2' sku: { name: 'Standard_LRS' } } output storageKey string = stg.listKeys().key[0].value
Any command-line input or output is written as follows:
brew update && brew install azure-cli
Bold: Indicates a new term, an important word, or words that you see on screen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "You can find the complete schema for all Azure resources in the Schema section of the Azure documentation."
Tips or Important notes
Appear like this.