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: “A job is defined within a GitHub Actions workflow using the jobs
keyword.”
A block of code is set as follows:
services: service1: image: my-registry.com/my-service1:latest service2: image: my-registry.com/my-service2:latest
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
jobs: build: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] node: [14, 16]
Any command-line input or output is written as follows:
az keyvault secret show --name "ExamplePassword" --vault-name "<your-unique-keyvault-name>" --query "value"
Bold: Indicates a new term, an important word, or words that you see onscreen. For instance, words in menus or dialog boxes appear in bold. Here is an example: “Open the service principal and navigate to Certificate & secrets | Federated Credentials | + Add credential.”
Tips or important notes
Appear like this.