Skip to content

infosechris/aws_iac_terraform

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Deploy AWS Resources using Terraform - IaC Demonstration

IAM (Identity)

  • Create users, groups, policies: admin and mfa enforcement, etc.

VPC (Network)

  • Deploy VPC, subnets, route tables, security groups, etc.

EC2 (Servers)

  • Create Key pairs and Deploy linux ec2 server with root/ebs devices, security groups, etc.

Usage

  1. Set up Free Tier AWS Account
  2. Configure AWS profile
  3. Install Terraform
  4. Clone Repo
  5. Init - Plan - Apply!

You can use it as a standalone but also use it as a module like this:

module "my_aws_vpc" {
source = "./modules/aws_vpc"
  region               = "us-west-2"
  environment          = "staging"
  vpc_cidr             = "10.0.0.0/16"
  public_subnets_cidr  = ["10.0.1.0/24", "10.0.2.0/24"]
  private_subnets_cidr = ["10.0.3.0/24", "10.0.4.0/24"]
  availability_zones   = ["us-west-2a", "us-west-2b"]
}

About

AWS Infrastructure deployment using Terraform IaC

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages