Skip to content

svyotov/terraform-tutorials

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

terraform-tutorials

This repository contains the tutorials for terraform

  1. You can get the terraform binary from here or here

Quick start

! Please note that this example will deploy real resources into your AWS account. We have made every effort to ensure all the resources qualify for the AWS Free Tier, but we are not responsible for any charges you may incur.

# Configure your AWS access by either setting up
# an AWS profile
export AWS_SECRET_ACCESS_KEY=(your secret access key)
# or configuring AWS access key id and secret
export AWS_ACCESS_KEY_ID=(your access key id)
export AWS_SECRET_ACCESS_KEY=(your secret access key)


cd <one of the sample terraform directories>

# Deploy the code

terraform init
terraform apply


# Clean up when you're done, to destroy the resources
# and stop paying for them!

terraform destroy

About

This repository contains terraform tutorials

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HCL 96.2%
  • Shell 3.8%