77 lines
1.8 KiB
HCL
77 lines
1.8 KiB
HCL
resource "aws_instance" "server" {
|
|
ami = "${lookup(var.ami, "${var.region}-${var.platform}")}"
|
|
instance_type = "${var.instance_type}"
|
|
key_name = "${var.key_name}"
|
|
count = "${var.servers}"
|
|
security_groups = ["${aws_security_group.consul.id}"]
|
|
subnet_id = "${lookup(var.subnets, count.index % var.servers)}"
|
|
|
|
connection {
|
|
user = "${lookup(var.user, var.platform)}"
|
|
private_key = "${file("${var.key_path}")}"
|
|
}
|
|
|
|
#Instance tags
|
|
tags {
|
|
Name = "${var.tagName}-${count.index}"
|
|
ConsulRole = "Server"
|
|
}
|
|
|
|
provisioner "file" {
|
|
source = "${path.module}/../shared/scripts/${lookup(var.service_conf, var.platform)}"
|
|
destination = "/tmp/${lookup(var.service_conf_dest, var.platform)}"
|
|
}
|
|
|
|
provisioner "remote-exec" {
|
|
inline = [
|
|
"echo ${var.servers} > /tmp/consul-server-count",
|
|
"echo ${aws_instance.server.0.private_ip} > /tmp/consul-server-addr",
|
|
]
|
|
}
|
|
|
|
provisioner "remote-exec" {
|
|
scripts = [
|
|
"${path.module}/../shared/scripts/install.sh",
|
|
"${path.module}/../shared/scripts/service.sh",
|
|
"${path.module}/../shared/scripts/ip_tables.sh",
|
|
]
|
|
}
|
|
}
|
|
|
|
resource "aws_security_group" "consul" {
|
|
name = "consul_${var.platform}"
|
|
description = "Consul internal traffic + maintenance."
|
|
vpc_id = "${var.vpc_id}"
|
|
|
|
// These are for internal traffic
|
|
ingress {
|
|
from_port = 0
|
|
to_port = 65535
|
|
protocol = "tcp"
|
|
self = true
|
|
}
|
|
|
|
ingress {
|
|
from_port = 0
|
|
to_port = 65535
|
|
protocol = "udp"
|
|
self = true
|
|
}
|
|
|
|
// These are for maintenance
|
|
ingress {
|
|
from_port = 22
|
|
to_port = 22
|
|
protocol = "tcp"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
|
|
// This is for outbound internet access
|
|
egress {
|
|
from_port = 0
|
|
to_port = 0
|
|
protocol = "-1"
|
|
cidr_blocks = ["0.0.0.0/0"]
|
|
}
|
|
}
|