-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcompute.tf
83 lines (71 loc) · 3.36 KB
/
compute.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
resource "aws_instance" "ec2-instance" {
count = var.server_count
ami = var.server_ami
instance_type = var.server_instance_type
key_name = var.ssh_key_name
subnet_id = length(var.instance_subnet_id) > 0 ? var.instance_subnet_id : element(tolist(data.aws_subnets.all.ids), count.index)
# "distinct" seems to prevent change-detection of new vpc_security_group_ids
vpc_security_group_ids = distinct(concat(data.aws_security_group.default.*.id, aws_security_group.sg.*.id, var.vpc_security_group_ids))
private_ip = length(var.private_ips) > 0 ? element(var.private_ips, count.index) : var.private_ip
associate_public_ip_address = var.associate_public_ip_address
availability_zone = var.instance_availability_zone
user_data = var.user_data
ebs_optimized = var.ebs_optimized
iam_instance_profile = var.iam_instance_profile
root_block_device {
volume_type = var.storage_class
volume_size = var.server_volume_size
delete_on_termination = var.delete_volume_on_instance_termination
}
tags = {
Name = length(var.instance_name_tag) > 0 ? var.instance_name_tag : "${var.project}-${var.deployed_app}-${var.env}"
Group = length(var.instance_group_tag) > 0 ? var.instance_group_tag : "${var.project}-${var.env}"
OwnerList = var.owner
EnvironmentList = var.env
EndDate = var.end_date
ProjectList = var.project_id
DeploymentType = var.deployment_type
}
volume_tags = {
Name = length(var.instance_name_tag) > 0 ? var.instance_name_tag : "${var.project}-${var.deployed_app}-${var.env}"
Group = "${var.project}-${var.env}"
OwnerList = var.owner
EnvironmentList = var.env
EndDate = var.end_date
ProjectList = var.project_id
DeploymentType = var.deployment_type
}
}
resource "null_resource" "server-setup" {
count = var.run_server_setup ? length(aws_instance.ec2-instance) : 0
depends_on = [aws_instance.ec2-instance]
connection {
user = var.ssh_user
host = aws_instance.ec2-instance[count.index].public_ip
}
provisioner "remote-exec" {
inline = ["ls"]
connection {
type = "ssh"
user = var.ssh_user
}
}
provisioner "local-exec" {
command = "sleep 30 && cd ${var.playbooks_root_dir} && ansible-playbook -i ansible/inventories/${var.devops_client}/${var.env} ansible/${var.server_monitoring_playbook} -e ansible_host=${aws_instance.ec2-instance[count.index].public_ip} -e ansible_ssh_user=ubuntu -e ssh_local_user=$USER -e server_monitoring_set_hostname=true -e hostname_from_ec2_Name_tag=false -e server_monitoring_hostname=${var.project_id}-${var.deployed_app}-${var.env} -e server_monitoring_hostname_from_ec2_Name_tag=False --vault-password-file ${var.vault_password_file} --limit ${aws_instance.ec2-instance[count.index][var.playbooks_inventory_type]}"
}
}
resource "null_resource" "post-create-commands" {
count = var.run_post_setup_remote_commands ? length(aws_instance.ec2-instance) : 0
depends_on = [aws_instance.ec2-instance]
connection {
user = var.ssh_user
host = aws_instance.ec2-instance[count.index].public_ip
}
provisioner "remote-exec" {
inline = var.post_setup_remote_commands
connection {
type = "ssh"
user = var.ssh_user
}
}
}