View the Project on GitHub kaitlincart/tech-writing-exercises
Edit the following tutorial snippets to be consistent with both the Engineering style guide. If you feel like the tutorial is missing information, note what should be added but do not attempt to fill in gaps.
HashiCorp voice is active, present tense, and directive.
The key principles are:
In addition to following the key principles, HashiCorp content should be inclusive, non-violent, and exclude ableist terms.
To install Terraform, simply visit Terraform.io and download the compresed binary application executable file deliverable for your platform, machine or enviromnent on which you like to run code and do development.
With Terraform installed, let’s dive right into it and start creating some infrastructure.
Its easiest to create a new directory on you’re local machine and create Terraform configuration code inside it.
$ mkdir terraform-demo
$ cd terraform-demo
First, use packer to build an AMI that is used for launching the Nomad Server and Client instances, Packer will tag the AMI with the created values so you can identify your new resources in the targeted environment. You can ommit the region flag if you are using the us-east-1 region.
packer build aws-packer.pkr.hcl
Next, we will need to navagate to the terraform AWS environment where you will be building the infrastructure components.
cd ../terraform/control