This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
elasticsearch.data.tf
106 lines (92 loc) · 3.35 KB
/
elasticsearch.data.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
# @author: Alejandro Galue <[email protected]>
data "template_file" "elasticsearch_data" {
count = length(var.es_data_ip_addresses)
template = file("${path.module}/templates/elasticsearch.tpl")
vars = {
node_id = count.index + 1 + length(var.es_master_ip_addresses)
hostname = element(keys(var.es_data_ip_addresses), count.index)
domainname = aws_route53_zone.private.name
dependencies = join(
",",
formatlist(
"%v:9200",
aws_route53_record.elasticsearch_master_private.*.name,
),
)
es_cluster_name = var.settings["cluster_name"]
es_seed_name = join(",", aws_route53_record.elasticsearch_master_private.*.name)
es_password = var.settings["elastic_password"]
es_license = var.settings["elastic_license"]
es_xpack = var.settings["elastic_xpack"]
es_role = "data"
es_monsrv = ""
}
}
resource "aws_instance" "elasticsearch_data" {
count = length(var.es_data_ip_addresses)
ami = data.aws_ami.elasticsearch.image_id
instance_type = var.instance_types["es_data"]
subnet_id = aws_subnet.public.id
key_name = var.aws_key_name
private_ip = element(values(var.es_data_ip_addresses), count.index)
user_data = element(
data.template_file.elasticsearch_data.*.rendered,
count.index,
)
associate_public_ip_address = true
vpc_security_group_ids = [
aws_security_group.common.id,
aws_security_group.elasticsearch.id,
]
depends_on = [aws_route53_record.elasticsearch_data_private]
root_block_device {
volume_type = "gp2"
volume_size = var.disk_space["elasticsearch"]
}
connection {
host = coalesce(self.public_ip, self.private_ip)
type = "ssh"
user = "ec2-user"
private_key = file(var.aws_private_key)
}
timeouts {
create = "30m"
delete = "15m"
}
tags = {
Name = "Terraform Elasticsearch Data Server ${count.index + 1}"
Environment = "Test"
Department = "Support"
}
}
resource "aws_route53_record" "elasticsearch_data" {
count = length(var.es_data_ip_addresses)
zone_id = aws_route53_zone.main.zone_id
name = "${element(keys(var.es_data_ip_addresses), count.index)}.${aws_route53_zone.main.name}"
type = "A"
ttl = var.dns_ttl
records = [
element(aws_instance.elasticsearch_data.*.public_ip, count.index),
]
}
resource "aws_route53_record" "elasticsearch_data_private" {
count = length(var.es_data_ip_addresses)
zone_id = aws_route53_zone.private.zone_id
name = "${element(keys(var.es_data_ip_addresses), count.index)}.${aws_route53_zone.private.name}"
type = "A"
ttl = var.dns_ttl
# TF-UPGRADE-TODO: In Terraform v0.10 and earlier, it was sometimes necessary to
# force an interpolation expression to be interpreted as a list by wrapping it
# in an extra set of list brackets. That form was supported for compatibilty in
# v0.11, but is no longer supported in Terraform v0.12.
#
# If the expression in the following list itself returns a list, remove the
# brackets to avoid interpretation as a list of lists. If the expression
# returns a single list item then leave it as-is and remove this TODO comment.
records = [
element(values(var.es_data_ip_addresses), count.index),
]
}
output "esdata" {
value = join(",", aws_instance.elasticsearch_data.*.public_ip)
}