Skip to content

Commit 6eae579

Browse files
Initial commit
1 parent 3886d7a commit 6eae579

11 files changed

+394
-0
lines changed

app-variables.tf

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
####################################
2+
## Application Module - Variables ##
3+
####################################
4+
5+
# Application definition
6+
7+
variable "app_name" {
8+
type = string
9+
description = "Application name"
10+
}
11+
12+
variable "app_environment" {
13+
type = string
14+
description = "Application environment"
15+
}

aws-user-data.sh

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
#! /bin/bash
2+
sudo apt-get update
3+
sudo apt-get install -y apache2
4+
sudo systemctl start apache2
5+
sudo systemctl enable apache2
6+
echo "<h1>Test AWS</h1>" | sudo tee /var/www/html/index.html

key-pair-main.tf

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#####################
2+
## Key Pair - Main ##
3+
#####################
4+
5+
# Generates a secure private key and encodes it as PEM
6+
resource "tls_private_key" "key_pair" {
7+
algorithm = "RSA"
8+
rsa_bits = 4096
9+
}
10+
11+
# Create the Key Pair
12+
resource "aws_key_pair" "key_pair" {
13+
key_name = "${lower(var.app_name)}-${lower(var.app_environment)}-linux-${lower(var.aws_region)}"
14+
public_key = tls_private_key.key_pair.public_key_openssh
15+
}
16+
17+
# Save file
18+
resource "local_file" "ssh_key" {
19+
filename = "${aws_key_pair.key_pair.key_name}.pem"
20+
content = tls_private_key.key_pair.private_key_pem
21+
}

linux-vm-main.tf

+87
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
###################################
2+
## Virtual Machine Module - Main ##
3+
###################################
4+
5+
# Create Elastic IP for the EC2 instance
6+
resource "aws_eip" "linux-eip" {
7+
vpc = true
8+
tags = {
9+
Name = "${lower(var.app_name)}-${var.app_environment}-linux-eip"
10+
Environment = var.app_environment
11+
}
12+
}
13+
14+
# Create EC2 Instance
15+
resource "aws_instance" "linux-server" {
16+
ami = data.aws_ami.ubuntu-linux-1804.id
17+
instance_type = var.linux_instance_type
18+
subnet_id = aws_subnet.public-subnet.id
19+
vpc_security_group_ids = [aws_security_group.aws-linux-sg.id]
20+
associate_public_ip_address = var.linux_associate_public_ip_address
21+
source_dest_check = false
22+
key_name = aws_key_pair.key_pair.key_name
23+
user_data = file("aws-user-data.sh")
24+
25+
# root disk
26+
root_block_device {
27+
volume_size = var.linux_root_volume_size
28+
volume_type = var.linux_root_volume_type
29+
delete_on_termination = true
30+
encrypted = true
31+
}
32+
33+
# extra disk
34+
ebs_block_device {
35+
device_name = "/dev/xvda"
36+
volume_size = var.linux_data_volume_size
37+
volume_type = var.linux_data_volume_type
38+
encrypted = true
39+
delete_on_termination = true
40+
}
41+
42+
tags = {
43+
Name = "${lower(var.app_name)}-${var.app_environment}-linux-server"
44+
Environment = var.app_environment
45+
}
46+
}
47+
48+
# Associate Elastic IP to Linux Server
49+
resource "aws_eip_association" "linux-eip-association" {
50+
instance_id = aws_instance.linux-server.id
51+
allocation_id = aws_eip.linux-eip.id
52+
}
53+
54+
# Define the security group for the Linux server
55+
resource "aws_security_group" "aws-linux-sg" {
56+
name = "${lower(var.app_name)}-${var.app_environment}-linux-sg"
57+
description = "Allow incoming HTTP connections"
58+
vpc_id = aws_vpc.vpc.id
59+
60+
ingress {
61+
from_port = 80
62+
to_port = 80
63+
protocol = "tcp"
64+
cidr_blocks = ["0.0.0.0/0"]
65+
description = "Allow incoming HTTP connections"
66+
}
67+
68+
ingress {
69+
from_port = 22
70+
to_port = 22
71+
protocol = "tcp"
72+
cidr_blocks = ["0.0.0.0/0"]
73+
description = "Allow incoming SSH connections"
74+
}
75+
76+
egress {
77+
from_port = 0
78+
to_port = 0
79+
protocol = "-1"
80+
cidr_blocks = ["0.0.0.0/0"]
81+
}
82+
83+
tags = {
84+
Name = "${lower(var.app_name)}-${var.app_environment}-linux-sg"
85+
Environment = var.app_environment
86+
}
87+
}

linux-vm-output.tf

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#####################################
2+
## Virtual Machine Module - Output ##
3+
#####################################
4+
5+
output "vm_linux_server_instance_id" {
6+
value = aws_instance.linux-server.id
7+
}
8+
9+
output "vm_linux_server_instance_public_dns" {
10+
value = aws_instance.linux-server.public_dns
11+
}
12+
13+
output "vm_linux_server_instance_public_ip" {
14+
value = aws_instance.linux-server.public_ip
15+
}
16+
17+
output "vm_linux_server_instance_private_ip" {
18+
value = aws_instance.linux-server.private_ip
19+
}

linux-vm-variables.tf

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
########################################
2+
## Virtual Machine Module - Variables ##
3+
########################################
4+
5+
variable "linux_instance_type" {
6+
type = string
7+
description = "EC2 instance type for Linux Server"
8+
default = "t2.micro"
9+
}
10+
11+
variable "linux_associate_public_ip_address" {
12+
type = bool
13+
description = "Associate a public IP address to the EC2 instance"
14+
default = true
15+
}
16+
17+
variable "linux_root_volume_size" {
18+
type = number
19+
description = "Volumen size of root volumen of Linux Server"
20+
}
21+
22+
variable "linux_data_volume_size" {
23+
type = number
24+
description = "Volumen size of data volumen of Linux Server"
25+
}
26+
27+
variable "linux_root_volume_type" {
28+
type = string
29+
description = "Volumen type of root volumen of Linux Server. Can be standard, gp3, gp2, io1, sc1 or st1"
30+
default = "gp2"
31+
}
32+
33+
variable "linux_data_volume_type" {
34+
type = string
35+
description = "Volumen type of data volumen of Linux Server. Can be standard, gp3, gp2, io1, sc1 or st1"
36+
default = "gp2"
37+
}

network-main.tf

+52
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
##########################################
2+
## Network Single AZ Public Only - Main ##
3+
##########################################
4+
5+
# Create the VPC
6+
resource "aws_vpc" "vpc" {
7+
cidr_block = var.vpc_cidr
8+
enable_dns_hostnames = true
9+
tags = {
10+
Name = "${lower(var.app_name)}-${lower(var.app_environment)}-vpc"
11+
Environment = var.app_environment
12+
}
13+
}
14+
15+
# Define the public subnet
16+
resource "aws_subnet" "public-subnet" {
17+
vpc_id = aws_vpc.vpc.id
18+
cidr_block = var.vpc_public_subnet_cidr
19+
availability_zone = var.aws_az
20+
tags = {
21+
Name = "${lower(var.app_name)}-${lower(var.app_environment)}-public-subnet"
22+
Environment = var.app_environment
23+
}
24+
}
25+
26+
# Define the internet gateway
27+
resource "aws_internet_gateway" "gw" {
28+
vpc_id = aws_vpc.vpc.id
29+
tags = {
30+
Name = "${lower(var.app_name)}-${lower(var.app_environment)}-igw"
31+
Environment = var.app_environment
32+
}
33+
}
34+
35+
# Define the public route table
36+
resource "aws_route_table" "public-rt" {
37+
vpc_id = aws_vpc.vpc.id
38+
route {
39+
cidr_block = "0.0.0.0/0"
40+
gateway_id = aws_internet_gateway.gw.id
41+
}
42+
tags = {
43+
Name = "${lower(var.app_name)}-${lower(var.app_environment)}-public-subnet-rt"
44+
Environment = var.app_environment
45+
}
46+
}
47+
48+
# Assign the public route table to the public subnet
49+
resource "aws_route_table_association" "public-rt-association" {
50+
subnet_id = aws_subnet.public-subnet.id
51+
route_table_id = aws_route_table.public-rt.id
52+
}

network-variables.tf

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
##############################################
2+
## Network Single AZ Public Only - Variables #
3+
##############################################
4+
5+
# AWS AZ
6+
variable "aws_az" {
7+
description = "AWS AZ"
8+
default = "eu-west-1c"
9+
}
10+
11+
# VPC Variables
12+
variable "vpc_cidr" {
13+
description = "CIDR for the VPC"
14+
default = "10.1.64.0/18"
15+
}
16+
17+
# Subnet Variables
18+
variable "vpc_public_subnet_cidr" {
19+
description = "CIDR for the public subnet"
20+
default = "10.1.64.0/24"
21+
}

provider-main.tf

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
################################
2+
## AWS Provider Module - Main ##
3+
################################
4+
5+
# AWS Provider
6+
terraform {
7+
required_providers {
8+
aws = {
9+
source = "hashicorp/aws"
10+
version = "~> 3.0"
11+
}
12+
}
13+
}
14+
15+
provider "aws" {
16+
access_key = var.aws_access_key
17+
secret_key = var.aws_secret_key
18+
region = var.aws_region
19+
}
20+

provider-variables.tf

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#####################################
2+
## AWS Provider Module - Variables ##
3+
#####################################
4+
5+
# AWS connection & authentication
6+
7+
variable "aws_access_key" {
8+
type = string
9+
description = "AWS access key"
10+
}
11+
12+
variable "aws_secret_key" {
13+
type = string
14+
description = "AWS secret key"
15+
}
16+
17+
variable "aws_region" {
18+
type = string
19+
description = "AWS region"
20+
}
21+

0 commit comments

Comments
 (0)