forked from MatthiasScholz/terraform-aws-es-quickstart
-
Notifications
You must be signed in to change notification settings - Fork 1
/
outputs.tf
29 lines (24 loc) · 787 Bytes
/
outputs.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
output "arn" {
description = "Amazon Resource Name (ARN) of the domain"
value = "${module.es.arn}"
}
output "domain_name" {
description = "Name of the AWS ES cluster"
value = "${var.domain_name}"
}
output "domain_id" {
description = "Unique identifier for the domain"
value = "${module.es.domain_id}"
}
output "endpoint" {
description = "Domain-specific endpoint used to submit index, search, and data upload requests"
value = "${module.es.endpoint}"
}
output "securitygroup" {
description = "Security Group ID used to access the ES Cluster"
value = "${aws_security_group.es_allow_all.id}"
}
output "jump_dnsname" {
description = "DNS name of the generated jump instances"
value = "${aws_instance.es_jump.*.public_dns}"
}