-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.tf
84 lines (70 loc) · 1.83 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
74
75
76
77
78
79
80
81
82
83
84
provider "aws" {
region = "eu-central-1"
}
data "aws_ami" "ubuntu" {
most_recent = true
filter {
name = "name"
values = ["ubuntu/images/hvm-ssd/ubuntu-focal-20.04-amd64-server-*"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
owners = ["099720109477"]
}
resource "aws_eip" "lb" {
instance = aws_instance.ds_bot.id
vpc = true
}
resource "aws_instance" "ds_bot" {
ami = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
vpc_security_group_ids = [aws_security_group.allow_web.id]
key_name = "connect_key"
iam_instance_profile = aws_iam_instance_profile.log_profile.name
connection {
type = "ssh"
host = self.public_ip
user = "ubuntu"
private_key = file("connect_key.pem")
}
provisioner "remote-exec" {
inline = [
"sudo apt-get update && install curl",
"curl -sSL https://get.docker.com/ | sh",
"sudo docker run -d --name ds_bot --log-driver=awslogs --log-opt awslogs-group=logs -p 80:80 straxseller/devops_prac",
"sudo docker run -d --name watchtower -v /var/run/docker.sock:/var/run/docker.sock containrrr/watchtower --cleanup -i 10",
]
}
tags = {
Name = "ds_bot"
}
}
resource "aws_security_group" "allow_web" {
name = "allow_web_traffic"
description = "Allow Web inbound traffic"
ingress {
description = "HTTP"
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "SSH"
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
output "Elastic_IP" {
value = aws_instance.ds_bot.public_ip
}