-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
73 lines (65 loc) · 2.09 KB
/
main.tf
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
resource "aws_security_group" "vm" {
name = "${var.git_repo_name}-sg"
description = "network rules for VM"
}
resource "aws_security_group_rule" "inbound_http_to_vm" {
security_group_id = aws_security_group.vm.id
description = "Allow http protocol inbound from any IP"
type = "ingress"
from_port = "80"
to_port = "80"
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
resource "aws_security_group_rule" "inbound_https_to_vm" {
security_group_id = aws_security_group.vm.id
description = "Allow https protocol inbound from any IP"
type = "ingress"
from_port = "443"
to_port = "443"
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
resource "aws_security_group_rule" "inbound_ssh_to_vm" {
security_group_id = aws_security_group.vm.id
description = "Allow ssh protocol inbound from any IP"
type = "ingress"
from_port = "22"
to_port = "22"
protocol = "tcp"
cidr_blocks = ["${var.user_ip}/32"]
}
resource "aws_security_group_rule" "vm_outbound_any" {
security_group_id = aws_security_group.vm.id
description = "Allow VM to connect out to any IP on any port"
type = "egress"
from_port = 0
to_port = 0
protocol = "all"
cidr_blocks = ["0.0.0.0/0"]
}
resource "aws_network_interface" "main" {
subnet_id = var.subnet_id
security_groups = [aws_security_group.vm.id]
tags = {
Name = "primary-interface"
}
}
resource "aws_instance" "app_server" {
ami = data.aws_ami.amazon_linux_23.id
instance_type = "t2.micro"
key_name = var.aws_key
user_data = templatefile("./templates/${var.template_id}.tpl", {
git_repo = var.git_repo,
git_repo_name = var.git_repo_name,
application_domain = var.application_domain,
db_pass = resource.random_password.db_pass.result
})
tags = {
Name = var.git_repo_name
}
network_interface {
network_interface_id = aws_network_interface.main.id
device_index = 0
}
}