Skip to content

Some examples of terraform provisioning in AWS

Notifications You must be signed in to change notification settings

twogg-git/tf-aws

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tf-aws

Examples of provisioning in AWS with Terraform

To setup your aws-cli environment aws docs

$ aws configure
AWS Access Key ID [None]: abc12345Key
AWS Secret Access Key [None]: abc12345Secret
Default region name [None]: us-east-1
Default output format [None]: json

Or adding your provider info on each main.tf file

provider "aws" {
  version = "~> 2.6"
  access_key = "abc12345Key"
  secret_key = "abc12345Secret"
  region = "us-east-1
}