Skip to content

Terraform for Orchestrating the provisioning of our AWS instances

Notifications You must be signed in to change notification settings

JohnByrneJames/Terraform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Infrastructure as Code with Terraform

To install Terraform we did the following:

Step 1

Download Terraform. Windows | Mac | Site

Step 2

Unzip the folder, place it somewhere for example a folder inside Users called Terraform then copy that directory location.

C:\Users\<user>\VirtualMachines\Terraform

TerraformSetUp

Step 3

  1. Now navigate to your environment variables if you are on Windows. (search in start menu)
  2. Inside that select the Advanced tab and select the environmental variables.. option at the bottom.
  3. Inside there in the User Variables double click Path variables and then in the new window click New and add that path you copied into the new variable slot.
  4. To check it has been installed close any/ all bash instances you have running and then reopen one in administrator and type:
# Check if the terraform is installed
terraform --version

Gif Of Terraforming

What is Terraform?

There are 2 sides of IAC

  1. Configuration Management
  2. Orchestration Tool
  • Ansible - Configuration management
  • Terraform - Orchestration
  • Kubernetes - Orchestration is used in containerisation - i.e. Docker, Crio, Rocket.

Terraform?

  1. Orchestration tools to configure out instances and their AWS configurations remotely.
  2. Terraform files are created with .tf extension
  3. Set Environment variables, via Environmental variables and add the ACCESS and SECRET Keys as user variables. Terraform will automatically pick them up.
  4. Make sure you refresh any current instances of Git Bash you have running as the environmental variables will not take effect until you have done that. Find the commands to create the instance below.

Terraform Commands:

terraform init
# Check the steps inside the code
# lists either 'SUCCESS' or 'ERROR'
terraform plan
# This runs after everything has been checked 
# Immplements the code (Deploy the infrastructure)
terraform apply

Resources

About

Terraform for Orchestrating the provisioning of our AWS instances

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages