Conventions Used
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: In the following command, the file is downloaded under ~/Downloads
and hence the command is being run from the Downloads
folder.
A block of code is set as follows:
terraform { required_providers { aws = { source = "hashicorp/aws" version = "~> 5.0" } } } provider "aws" { region = "ap-south-1" }
Add the code highlight example before the command line sentence:
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
terraform { required_providers { local name = { source = «source location »version = «version constraint »} } }
Any command line or output is written as follows:
brew tap hashicorp/tap
Bold: Indicates a new term, an important word, or words that you see onscreen. Here is an example: This is exactly where Infrastructure as Code (IaC) adds value.
Tips or important notes
Appear like this.