-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot.tf
73 lines (65 loc) · 1.65 KB
/
bot.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_iam_role" "bot_role" {
name = "bot_role"
assume_role_policy = jsonencode({
"Version" : "2012-10-17",
"Statement" : [
{
"Effect" : "Allow",
"Action" : [
"sts:AssumeRole"
],
"Principal" : {
"Service" : [
"ec2.amazonaws.com"
]
}
}
]
})
managed_policy_arns = ["arn:aws:iam::aws:policy/service-role/AmazonEC2RoleforAWSCodeDeploy", "arn:aws:iam::aws:policy/AmazonSSMManagedInstanceCore"]
}
resource "aws_iam_instance_profile" "bot_profile" {
name = "bot-profile"
role = aws_iam_role.bot_role.name
}
resource "aws_security_group" "bot_sg" {
name = "bot_sg"
description = "bot security group"
vpc_id = aws_vpc.bot_vpc.id
ingress {
description = "HTTP"
from_port = 443
to_port = 443
protocol = "TCP"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
description = "SSH"
from_port = 22
to_port = 22
protocol = "TCP"
#EC2 Instance connect IP CIDR range for us-east-1
cidr_blocks = ["18.206.107.24/29"]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
}
resource "aws_instance" "bot" {
ami = data.aws_ami.ubuntu.id
instance_type = "t2.micro"
vpc_security_group_ids = [aws_security_group.bot_sg.id]
subnet_id = aws_subnet.bot_subnet.id
iam_instance_profile = aws_iam_instance_profile.bot_profile.id
lifecycle {
ignore_changes = [ami]
}
user_data = file("userdata.tpl")
user_data_replace_on_change = true
tags = {
Name = "botardo"
}
}