e012c2b5bf
Includes: * baseline Windows AMI * initial pass at Terraform configurations * OpenSSH for Windows Using OpenSSH is a lot nicer for Nomad developers than winrm would be, plus it lets us avoid passing around the Windows password in the clear. Note that now we're copying up all the provisioning scripts and configs as a zipped bundle because TF's file provisioner dies in the middle of pushing up multiple files (whereas `scp -r` works fine). We're also running all the provisioning scripts inside the userdata by polling for the zip file to show up (gross!). This is because `remote-exec` provisioners are failing on Windows with the same symptoms as: https://github.com/hashicorp/terraform/issues/17728 If we can't fix this, it'll prevent us from having multiple Windows clients running until TF supports count interpolation in the `template_file`, which is planned for a later 0.12 release.
166 lines
5.1 KiB
HCL
166 lines
5.1 KiB
HCL
resource "aws_instance" "server" {
|
|
ami = data.aws_ami.linux.image_id
|
|
instance_type = var.instance_type
|
|
key_name = module.keys.key_name
|
|
vpc_security_group_ids = [aws_security_group.primary.id]
|
|
count = var.server_count
|
|
|
|
# Instance tags
|
|
tags = {
|
|
Name = "${local.random_name}-server-${count.index}"
|
|
ConsulAutoJoin = "auto-join"
|
|
SHA = var.nomad_sha
|
|
User = data.aws_caller_identity.current.arn
|
|
}
|
|
|
|
iam_instance_profile = aws_iam_instance_profile.instance_profile.name
|
|
|
|
# copy up all provisioning scripts and configs
|
|
provisioner "file" {
|
|
source = "shared/"
|
|
destination = "/ops/shared"
|
|
|
|
connection {
|
|
host = coalesce(self.public_ip, self.private_ip)
|
|
type = "ssh"
|
|
user = "ubuntu"
|
|
private_key = module.keys.private_key_pem
|
|
}
|
|
}
|
|
|
|
provisioner "remote-exec" {
|
|
inline = [
|
|
"chmod +x /ops/shared/config/provision-server.sh",
|
|
"/ops/shared/config/provision-server.sh aws ${var.server_count} '${var.nomad_sha}' '${var.indexed == false ? "server.hcl" : "indexed/server-${count.index}.hcl"}'",
|
|
]
|
|
|
|
connection {
|
|
host = coalesce(self.public_ip, self.private_ip)
|
|
type = "ssh"
|
|
user = "ubuntu"
|
|
private_key = module.keys.private_key_pem
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "aws_instance" "client" {
|
|
ami = data.aws_ami.linux.image_id
|
|
instance_type = var.instance_type
|
|
key_name = module.keys.key_name
|
|
vpc_security_group_ids = [aws_security_group.primary.id]
|
|
count = var.client_count
|
|
depends_on = [aws_instance.server]
|
|
|
|
# Instance tags
|
|
tags = {
|
|
Name = "${local.random_name}-client-${count.index}"
|
|
ConsulAutoJoin = "auto-join"
|
|
SHA = var.nomad_sha
|
|
User = data.aws_caller_identity.current.arn
|
|
}
|
|
|
|
ebs_block_device {
|
|
device_name = "/dev/xvdd"
|
|
volume_type = "gp2"
|
|
volume_size = "50"
|
|
delete_on_termination = "true"
|
|
}
|
|
|
|
iam_instance_profile = aws_iam_instance_profile.instance_profile.name
|
|
|
|
# copy up all provisioning scripts and configs
|
|
provisioner "file" {
|
|
source = "shared/"
|
|
destination = "/ops/shared"
|
|
|
|
connection {
|
|
host = coalesce(self.public_ip, self.private_ip)
|
|
type = "ssh"
|
|
user = "ubuntu"
|
|
private_key = module.keys.private_key_pem
|
|
}
|
|
}
|
|
|
|
provisioner "remote-exec" {
|
|
inline = [
|
|
"chmod +x /ops/shared/config/provision-client.sh",
|
|
"/ops/shared/config/provision-client.sh aws '${var.nomad_sha}' '${var.indexed == false ? "client.hcl" : "indexed/client-${count.index}.hcl"}'",
|
|
]
|
|
|
|
connection {
|
|
host = coalesce(self.public_ip, self.private_ip)
|
|
type = "ssh"
|
|
user = "ubuntu"
|
|
private_key = module.keys.private_key_pem
|
|
}
|
|
}
|
|
}
|
|
data "template_file" "user_data_client_windows" {
|
|
template = file("${path.root}/shared/config/userdata-windows.ps1")
|
|
vars = {
|
|
nomad_sha = var.nomad_sha
|
|
}
|
|
}
|
|
|
|
data "archive_file" "windows_configs" {
|
|
type = "zip"
|
|
source_dir = "./shared"
|
|
output_path = "./windows_configs.zip"
|
|
}
|
|
|
|
resource "aws_instance" "client_windows" {
|
|
ami = data.aws_ami.windows.image_id
|
|
instance_type = var.instance_type
|
|
key_name = module.keys.key_name
|
|
vpc_security_group_ids = [aws_security_group.primary.id]
|
|
count = var.windows_client_count
|
|
depends_on = [aws_instance.server]
|
|
iam_instance_profile = "${aws_iam_instance_profile.instance_profile.name}"
|
|
|
|
# Instance tags
|
|
tags = {
|
|
Name = "${local.random_name}-client-windows-${count.index}"
|
|
ConsulAutoJoin = "auto-join"
|
|
}
|
|
|
|
ebs_block_device {
|
|
device_name = "xvdd"
|
|
volume_type = "gp2"
|
|
volume_size = "50"
|
|
delete_on_termination = "true"
|
|
}
|
|
|
|
# We need this userdata script because Windows machines don't
|
|
# configure ssh with cloud-init by default.
|
|
user_data = data.template_file.user_data_client_windows.rendered
|
|
|
|
# Note:
|
|
# we're copying up all the provisioning scripts and configs as
|
|
# a zipped bundle because TF's file provisioner dies in the middle
|
|
# of pushing up multiple files (whereas 'scp -r' works fine).
|
|
#
|
|
# We're also running all the provisioning scripts inside the
|
|
# userdata by polling for the zip file to show up. (Gross!)
|
|
# This is because remote-exec provisioners are failing on Windows
|
|
# with the same symptoms as:
|
|
# https://github.com/hashicorp/terraform/issues/17728
|
|
#
|
|
# If we can't fix this, it'll prevent us from having multiple
|
|
# Windows clients running until TF supports count interpolation
|
|
# in the template_file, which is planned for a later 0.12 release
|
|
#
|
|
provisioner "file" {
|
|
source = "./windows_configs.zip"
|
|
destination = "C:/ops/windows_configs.zip"
|
|
|
|
connection {
|
|
host = coalesce(self.public_ip, self.private_ip)
|
|
type = "ssh"
|
|
user = "Administrator"
|
|
private_key = module.keys.private_key_pem
|
|
timeout = "10m"
|
|
}
|
|
}
|
|
|
|
}
|