-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tf
More file actions
106 lines (88 loc) · 2.21 KB
/
main.tf
File metadata and controls
106 lines (88 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 4.0"
}
}
}
provider "aws" {
region = "us-west-2"
}
resource "aws_vpc" "myvpc" {
cidr_block = "10.0.0.0/16"
enable_dns_hostnames = true
}
resource "aws_subnet" "public_subnet" {
vpc_id = aws_vpc.myvpc.id
cidr_block = "10.0.89.0/24"
map_public_ip_on_launch = true
availability_zone = "us-west-2c"
}
resource "aws_subnet" "private_subnet" {
vpc_id = aws_vpc.myvpc.id
cidr_block = "10.0.17.0/24"
availability_zone = "us-west-2c"
}
resource "aws_internet_gateway" "myigw" {
vpc_id = aws_vpc.myvpc.id
}
resource "aws_route_table" "proute" {
vpc_id = aws_vpc.myvpc.id
route {
cidr_block = "0.0.0.0/0"
gateway_id = aws_internet_gateway.myigw.id
}
}
resource "aws_route_table_association" "proute_public_subnet" {
subnet_id = aws_subnet.public_subnet.id
route_table_id = aws_route_table.proute.id
}
resource "aws_eip" "natip" {
vpc = true
}
resource "aws_nat_gateway" "ngw" {
allocation_id = aws_eip.natip.id
subnet_id = aws_subnet.public_subnet.id
}
resource "aws_route_table" "privateroute" {
vpc_id = aws_vpc.myvpc.id
route {
cidr_block = "0.0.0.0/0"
nat_gateway_id = aws_nat_gateway.ngw.id
}
}
resource "aws_route_table_association" "route_private_subnet" {
subnet_id = aws_subnet.private_subnet.id
route_table_id = aws_route_table.privateroute.id
}
resource "aws_security_group" "MyMainSG" {
name = "MyServer-SG"
description = "cool"
vpc_id = aws_vpc.myvpc.id
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_instance" "testingserver" {
ami = "ami-094125af156557ca2"
instance_type = "t2.nano"
subnet_id = aws_subnet.public_subnet.id
vpc_security_group_ids = [aws_security_group.MyMainSG.id]
key_name = "vockey"
}
resource "aws_instance" "privateserver" {
ami = "ami-094125af156557ca2"
instance_type = "t2.nano"
subnet_id = aws_subnet.private_subnet.id
vpc_security_group_ids = [aws_security_group.MyMainSG.id]
}