forked from cloudposse/terraform-aws-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
44 lines (36 loc) · 1.49 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
output "security_group_id" {
value = join("", aws_security_group.default.*.id)
description = "Security Group ID to control access to the Elasticsearch domain"
}
output "domain_arn" {
value = join("", aws_elasticsearch_domain.default.*.arn)
description = "ARN of the Elasticsearch domain"
}
output "domain_id" {
value = join("", aws_elasticsearch_domain.default.*.domain_id)
description = "Unique identifier for the Elasticsearch domain"
}
output "domain_endpoint" {
value = join("", aws_elasticsearch_domain.default.*.endpoint)
description = "Domain-specific endpoint used to submit index, search, and data upload requests"
}
output "kibana_endpoint" {
value = join("", aws_elasticsearch_domain.default.*.kibana_endpoint)
description = "Domain-specific endpoint for Kibana without https scheme"
}
output "domain_hostname" {
value = module.domain_hostname.hostname
description = "Elasticsearch domain hostname to submit index, search, and data upload requests"
}
output "kibana_hostname" {
value = module.kibana_hostname.hostname
description = "Kibana hostname"
}
output "elasticsearch_user_iam_role_name" {
value = join(",", aws_iam_role.elasticsearch_user.*.name)
description = "The name of the IAM role to allow access to Elasticsearch cluster"
}
output "elasticsearch_user_iam_role_arn" {
value = join(",", aws_iam_role.elasticsearch_user.*.arn)
description = "The ARN of the IAM role to allow access to Elasticsearch cluster"
}