Conventions used
There are a number of text conventions used throughout this book.
Code in text: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "If you wish to merge tags using an update command, you can use Update-AzTag -Operation Merge."
A block of code is set as follows:
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
"location": "eastus",
"tags": {
"Dept": "Finance",
"CostCenter": "001"
},
"sku": {
Any command-line input or output is written as follows:
$resource = Get-AzResource -Name 'packtstoragewithtags' -ResourceGroup 'packtstorageresourcegroup'
Bold: Indicates a new term, an important word, or words that you see onscreen. For example, words in menus or dialog boxes appear in the text like this. Here is an example: "If you need to modify or add additional tags to an existing resource, this can be performed by clicking on the change option next to Tags."
Tips or important notes
Appear like this.