This repository contains Terraform scripts to provision and manage AWS infrastructure. The project is designed to automate infrastructure deployment and management using Infrastructure as Code (IaC) principles.
- Provisioning AWS Resources: EC2 instances, VPCs, subnets, security groups, and more.
- Modular Terraform Code: Makes the infrastructure easily reusable and maintainable.
- Automated Deployments: Streamlined provisioning of infrastructure with minimal manual intervention.
- Terraform: Ensure Terraform is installed (v0.14+).
- AWS CLI: Install and configure AWS CLI with valid credentials.
- AWS Account: Required for provisioning AWS infrastructure.
- IAM Role: Ensure proper permissions for Terraform to provision resources on AWS.
/
βββ /modules # Contains reusable Terraform modules
β βββ /network # Module for VPC, subnets, and gateways
β βββ /compute # Module for EC2 instances
βββ /environments
β βββ /dev # Terraform code for the development environment
β βββ /prod # Terraform code for the production environment
βββ /scripts # Shell scripts for automation
βββ /main.tf # Main entry Terraform script
βββ /variables.tf # Input variables
βββ /outputs.tf # Output variables
βββ /provider.tf # AWS provider configuration
βββ /README.md # Project README (this file)
git clone https://github.com/vishnuswmech/aws_infra.git
cd aws_infra
Ensure the AWS CLI is installed and configured. Run the following command to configure your credentials:
aws configure
Provide your AWS Access Key, Secret Access Key, region, and default output format.
Navigate to the desired environment (dev
or prod
) and initialize Terraform:
cd environments/dev # or cd environments/prod
terraform init
To provision the infrastructure, run the following Terraform command:
terraform apply
Terraform will prompt you for confirmation. Type yes
to proceed.
If you wish to tear down the infrastructure, you can run:
terraform destroy
This will remove all the resources created by Terraform.
This project follows a modular approach to Terraform, where resources like networking (VPCs, subnets) and compute (EC2 instances) are defined in separate reusable modules. This design makes it easy to extend or modify the infrastructure as required.
Located in /modules/network
, this module handles the creation of:
- VPC
- Subnets
- Internet Gateways
- Route Tables
Located in /modules/compute
, this module provisions:
- EC2 instances
- Security Groups
Input variables for each environment are defined in variables.tf
. You can modify the default values or pass new values when applying the configuration.
# Example of passing a variable during apply
terraform apply -var="instance_type=t2.micro"
Output values such as EC2 instance IDs, VPC IDs, and other resource identifiers are defined in outputs.tf
and can be used for further integrations.
The /scripts
folder contains automation scripts that can be used for:
- Setting up additional dependencies
- Post-deployment configurations
- Integration with other services