-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tf
83 lines (71 loc) · 1.85 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
terraform {
required_providers {
aws = {
source = "hashicorp/aws"
version = "~> 5.0"
}
}
}
provider "aws" {
region = var.AWS_DEFAULT_REGION
access_key = var.AWS_ACCESS_KEY_ID
secret_key = var.AWS_SECRET_ACCESS_KEY
}
resource "aws_security_group" "ec2_proxies_sg" {
name = "ec2_proxies_sg"
# Open up incoming ssh port
ingress {
from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
# Open up outbound internet access
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
# Open up incoming traffic for proxy
ingress {
from_port = var.PROXY_PORT
to_port = var.PROXY_PORT
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
}
# https://www.terraform.io/docs/providers/aws/r/key_pair.html
resource "aws_key_pair" "ec2_key" {
key_name = var.KEY_PAIR_NAME
public_key = file("${var.PUBLIC_KEY_PATH}")
}
resource "aws_instance" "ProxyNode" {
count = var.AWS_INSTANCES_COUNT
ami = var.AWS_INSTANCE_AMI
instance_type = var.AWS_INSTANCE_TYPE
key_name = aws_key_pair.ec2_key.key_name
vpc_security_group_ids = ["${aws_security_group.ec2_proxies_sg.id}"]
tags = {
Name = "Proxy Node ${count.index}"
}
provisioner "file" {
source = "setup.sh"
destination = "/home/${var.AWS_INSTANCE_USER_NAME}/setup.sh"
}
provisioner "remote-exec" {
inline = [
"chmod +x ./setup.sh",
"sudo ./setup.sh ${var.AWS_INSTANCE_USER_NAME} ${var.PROXY_TYPE} ${var.PROXY_PORT} ${var.PROXY_USER} ${var.PROXY_PASSWORD}",
]
}
connection {
type = "ssh"
host = self.public_ip
user = var.AWS_INSTANCE_USER_NAME
private_key = file("${var.PRIVATE_KEY_PATH}")
}
}
output "instances" {
value = aws_instance.ProxyNode.*.public_ip
}