Skip to content

Commit a361909

Browse files
Merge pull request #2 from devops-deepaktogloor/feature
Merging with main branch
2 parents 674c096 + 899eccc commit a361909

21 files changed

+413
-0
lines changed

.github/workflows/deploy.yaml

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name : Terraform CI CD Pipeline for deploying AWS Resources
2+
run-name: ${{ github.actor }} is creating a new deployment
3+
4+
on:
5+
push:
6+
branches:
7+
- 'main'
8+
9+
env:
10+
AWS_ACCESS_KEY: ${{ secrets.AWS_ACCESS_KEY }}
11+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
12+
13+
jobs:
14+
build-infra:
15+
name: terraform-ci-cd
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout
19+
uses: actions/checkout@v2
20+
- name: Setup Terraform
21+
uses: hashicorp/setup-terraform@v2
22+
with:
23+
terraform_version: 1.0.0
24+
- name: Terraform Init
25+
id: init
26+
run: terraform init
27+
working-directory: ./Terraform-VPC
28+
- name: Terraform Validate
29+
id: validate
30+
run: terraform validate
31+
working-directory: ./Terraform-VPC
32+
- name: Terraform Plan
33+
id: plan
34+
run: terraform plan
35+
working-directory: ./Terraform-VPC
36+
- name: Terraform Apply
37+
id: apply
38+
run: terraform apply --auto-approve
39+
working-directory: ./Terraform-VPC
40+

Terraform-VPC/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.terraform/
2+
.terraform.lock.hcl

Terraform-VPC/main.tf

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
module "vpc" {
2+
source = "./modules/vpc"
3+
vpc_cidr = var.vpc_cidr
4+
subnet_cidr = var.subnet_cidr
5+
}
6+
7+
module "sg" {
8+
source = "./modules/sg"
9+
vpc_id = module.vpc.vpc_id
10+
}
11+
12+
module "ec2" {
13+
source = "./modules/ec2"
14+
sg_id = module.sg.sg_id
15+
subnets = module.vpc.subnet_ids
16+
}
17+
18+
module "alb" {
19+
source = "./modules/alb"
20+
sg_id = module.sg.sg_id
21+
subnets = module.vpc.subnet_ids
22+
vpc_id = module.vpc.vpc_id
23+
instances = module.ec2.instances
24+
}

Terraform-VPC/modules/alb/data.tf

Whitespace-only changes.

Terraform-VPC/modules/alb/main.tf

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
#ALB
2+
resource "aws_lb" "alb" {
3+
name = "application-loadbalancer"
4+
internal = false
5+
load_balancer_type = "application"
6+
security_groups = [var.sg_id]
7+
subnets = var.subnets
8+
}
9+
10+
# Listener
11+
resource "aws_lb_listener" "listener" {
12+
load_balancer_arn = aws_lb.alb.arn
13+
port = "80"
14+
protocol = "HTTP"
15+
16+
default_action {
17+
type = "forward"
18+
target_group_arn = aws_lb_target_group.tg.arn
19+
}
20+
}
21+
22+
# Target Group
23+
resource "aws_lb_target_group" "tg" {
24+
name = "tg"
25+
port = 80
26+
protocol = "HTTP"
27+
vpc_id = var.vpc_id
28+
}
29+
30+
# Target Group Attachment
31+
resource "aws_lb_target_group_attachment" "tga" {
32+
count = length(var.instances)
33+
target_group_arn = aws_lb_target_group.tg.arn
34+
target_id = var.instances[count.index]
35+
port = 80
36+
}

Terraform-VPC/modules/alb/outputs.tf

Whitespace-only changes.
+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
variable "sg_id" {
2+
description = "sg id for application load balancer"
3+
type = string
4+
}
5+
6+
variable "subnets" {
7+
description = "sg subnets for application load balancer"
8+
type = list(string)
9+
}
10+
11+
variable "vpc_id" {
12+
description = "VPC id for Target Group"
13+
type = string
14+
}
15+
16+
variable "instances" {
17+
description = "Instance ID for Target Group Attachment"
18+
type = list(string)
19+
}

Terraform-VPC/modules/ec2/data.tf

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
data "aws_ami" "amazon-2" {
2+
most_recent = true
3+
4+
filter {
5+
name = "name"
6+
values = ["amzn2-ami-hvm-*-x86_64-ebs"]
7+
}
8+
9+
filter {
10+
name = "virtualization-type"
11+
values = ["hvm"]
12+
}
13+
14+
owners = ["amazon"]
15+
}
16+
17+
data "aws_availability_zones" "available" {
18+
state = "available"
19+
}

Terraform-VPC/modules/ec2/main.tf

+114
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
resource "aws_instance" "web" {
2+
count = length(var.ec2_names)
3+
ami = data.aws_ami.amazon-2.id
4+
instance_type = "t2.micro"
5+
associate_public_ip_address = true
6+
vpc_security_group_ids = [var.sg_id]
7+
subnet_id = var.subnets[count.index]
8+
availability_zone = data.aws_availability_zones.available.names[count.index]
9+
user_data = <<EOF
10+
#!/bin/bash
11+
sudo yum update -y
12+
sudo yum install -y httpd
13+
sudo yum install -y git
14+
export META_INST_ID=`curl http://169.254.169.254/latest/meta-data/instance-id`
15+
export META_INST_TYPE=`curl http://169.254.169.254/latest/meta-data/instance-type`
16+
export META_INST_AZ=`curl http://169.254.169.254/latest/meta-data/placement/availability-zone`
17+
cd /var/www/html
18+
echo "<!DOCTYPE html>" >> index.html
19+
echo "<html lang="en">" >> index.html
20+
echo "<head>" >> index.html
21+
echo " <meta charset="UTF-8">" >> index.html
22+
echo " <meta name="viewport" content="width=device-width, initial-scale=1.0">" >> index.html
23+
echo " <style>" >> index.html
24+
echo " @import url('https://fonts.googleapis.com/css?family=Open+Sans&display=swap');" >> index.html
25+
echo " html {" >> index.html
26+
echo " position: relative;" >> index.html
27+
echo " overflow-x: hidden !important;" >> index.html
28+
echo " }" >> index.html
29+
echo " * {" >> index.html
30+
echo " box-sizing: border-box;" >> index.html
31+
echo " }" >> index.html
32+
echo " body {" >> index.html
33+
echo " font-family: 'Open Sans', sans-serif;" >> index.html
34+
echo " color: #324e63;" >> index.html
35+
echo " }" >> index.html
36+
echo " .wrapper {" >> index.html
37+
echo " width: 100%;" >> index.html
38+
echo " width: 100%;" >> index.html
39+
echo " height: auto;" >> index.html
40+
echo " min-height: 90vh;" >> index.html
41+
echo " padding: 50px 20px;" >> index.html
42+
echo " padding-top: 100px;" >> index.html
43+
echo " display: flex;" >> index.html
44+
echo " }" >> index.html
45+
echo " .instance-card {" >> index.html
46+
echo " width: 100%;" >> index.html
47+
echo " min-height: 380px;" >> index.html
48+
echo " margin: auto;" >> index.html
49+
echo " box-shadow: 12px 12px 2px 1px rgba(13, 28, 39, 0.4);" >> index.html
50+
echo " background: #fff;" >> index.html
51+
echo " border-radius: 15px;" >> index.html
52+
echo " border-width: 1px;" >> index.html
53+
echo " max-width: 500px;" >> index.html
54+
echo " position: relative;" >> index.html
55+
echo " border: thin groove #9c83ff;" >> index.html
56+
echo " }" >> index.html
57+
echo " .instance-card__cnt {" >> index.html
58+
echo " margin-top: 35px;" >> index.html
59+
echo " text-align: center;" >> index.html
60+
echo " padding: 0 20px;" >> index.html
61+
echo " padding-bottom: 40px;" >> index.html
62+
echo " transition: all .3s;" >> index.html
63+
echo " }" >> index.html
64+
echo " .instance-card__name {" >> index.html
65+
echo " font-weight: 700;" >> index.html
66+
echo " font-size: 24px;" >> index.html
67+
echo " color: #6944ff;" >> index.html
68+
echo " margin-bottom: 15px;" >> index.html
69+
echo " }" >> index.html
70+
echo " .instance-card-inf__item {" >> index.html
71+
echo " padding: 10px 35px;" >> index.html
72+
echo " min-width: 150px;" >> index.html
73+
echo " }" >> index.html
74+
echo " .instance-card-inf__title {" >> index.html
75+
echo " font-weight: 700;" >> index.html
76+
echo " font-size: 27px;" >> index.html
77+
echo " color: #324e63;" >> index.html
78+
echo " }" >> index.html
79+
echo " .instance-card-inf__txt {" >> index.html
80+
echo " font-weight: 500;" >> index.html
81+
echo " margin-top: 7px;" >> index.html
82+
echo " }" >> index.html
83+
echo " </style>" >> index.html
84+
echo " <title>Amazon EC2 Status</title>" >> index.html
85+
echo "</head>" >> index.html
86+
echo "<body>" >> index.html
87+
echo " <div class="wrapper">" >> index.html
88+
echo " <div class="instance-card">" >> index.html
89+
echo " <div class="instance-card__cnt">" >> index.html
90+
echo " <div class="instance-card__name">Your EC2 Instance is running!</div>" >> index.html
91+
echo " <div class="instance-card-inf">" >> index.html
92+
echo " <div class="instance-card-inf__item">" >> index.html
93+
echo " <div class="instance-card-inf__txt">Instance Id</div>" >> index.html
94+
echo " <div class="instance-card-inf__title">" $META_INST_ID "</div>" >> index.html
95+
echo " </div>" >> index.html
96+
echo " <div class="instance-card-inf__item">" >> index.html
97+
echo " <div class="instance-card-inf__txt">Instance Type</div>" >> index.html
98+
echo " <div class="instance-card-inf__title">" $META_INST_TYPE "</div>" >> index.html
99+
echo " </div>" >> index.html
100+
echo " <div class="instance-card-inf__item">" >> index.html
101+
echo " <div class="instance-card-inf__txt">Availability zone</div>" >> index.html
102+
echo " <div class="instance-card-inf__title">" $META_INST_AZ "</div>" >> index.html
103+
echo " </div>" >> index.html
104+
echo " </div>" >> index.html
105+
echo " </div>" >> index.html
106+
echo " </div>" >> index.html
107+
echo "</body>" >> index.html
108+
echo "</html>" >> index.html
109+
sudo service httpd start
110+
EOF
111+
tags = {
112+
Name = var.ec2_names[count.index]
113+
}
114+
}

Terraform-VPC/modules/ec2/outputs.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
output "instances" {
2+
value = aws_instance.web.*.id
3+
}
+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
variable "sg_id" {
2+
description = "sg_id"
3+
type = string
4+
}
5+
6+
variable "subnets" {
7+
description = "subnets for ec2"
8+
type = list(string)
9+
}
10+
11+
variable "ec2_names" {
12+
description = "name for ec2 instance"
13+
type = list(string)
14+
default = [ "webserver1","webserver2" ]
15+
}

Terraform-VPC/modules/sg/main.tf

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
resource "aws_security_group" "sg" {
2+
description = "Allow SSH, HTTP inbound traffic"
3+
vpc_id = var.vpc_id
4+
5+
ingress {
6+
description = "HTTP"
7+
from_port = 80
8+
to_port = 80
9+
protocol = "tcp"
10+
cidr_blocks = ["0.0.0.0/0"]
11+
}
12+
ingress {
13+
description = "SSH"
14+
from_port = 22
15+
to_port = 22
16+
protocol = "tcp"
17+
cidr_blocks = ["0.0.0.0/0"]
18+
}
19+
egress {
20+
from_port = 0
21+
to_port = 0
22+
protocol = "-1"
23+
cidr_blocks = ["0.0.0.0/0"]
24+
}
25+
tags = {
26+
Name = "My_Security_Group"
27+
}
28+
}

Terraform-VPC/modules/sg/outputs.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
output "sg_id" {
2+
value = aws_security_group.sg.id
3+
}

Terraform-VPC/modules/sg/variables.tf

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
variable "vpc_id" {
2+
description = "VPC ID for security group"
3+
type = string
4+
}

Terraform-VPC/modules/vpc/data.tf

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
data "aws_availability_zones" "available" {
2+
state = "available"
3+
}

Terraform-VPC/modules/vpc/main.tf

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# VPC
2+
resource "aws_vpc" "my_vpc" {
3+
cidr_block = var.vpc_cidr
4+
instance_tenancy = "default"
5+
6+
tags = {
7+
"Name" = "my_vpc"
8+
}
9+
}
10+
11+
# 2 Subnets
12+
resource "aws_subnet" "subnets" {
13+
count = length(var.subnet_cidr)
14+
vpc_id = aws_vpc.my_vpc.id
15+
cidr_block = var.subnet_cidr[count.index]
16+
availability_zone = data.aws_availability_zones.available.names[count.index]
17+
map_public_ip_on_launch = true
18+
19+
tags = {
20+
Name = var.subnet_names[count.index]
21+
}
22+
}
23+
24+
# Internet Gateway
25+
resource "aws_internet_gateway" "igw" {
26+
vpc_id = aws_vpc.my_vpc.id
27+
28+
tags = {
29+
Name = "MyInternetGateway"
30+
}
31+
}
32+
33+
# Route Table
34+
resource "aws_route_table" "rt" {
35+
vpc_id = aws_vpc.my_vpc.id
36+
37+
route {
38+
cidr_block = "0.0.0.0/0" # public
39+
gateway_id = aws_internet_gateway.igw.id
40+
}
41+
42+
tags = {
43+
"Name" = "MyRouteTable"
44+
}
45+
}
46+
47+
# Route Table Association
48+
resource "aws_route_table_association" "rta" {
49+
count = length(var.subnet_cidr)
50+
subnet_id = aws_subnet.subnets[count.index].id
51+
route_table_id = aws_route_table.rt.id
52+
}

Terraform-VPC/modules/vpc/outputs.tf

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
output "vpc_id" {
2+
value = aws_vpc.my_vpc.id
3+
}
4+
5+
output "subnet_ids" {
6+
value = aws_subnet.subnets.*.id
7+
}

0 commit comments

Comments
 (0)