-
-
Notifications
You must be signed in to change notification settings - Fork 229
/
Copy pathoutputs.tf
49 lines (40 loc) · 1.53 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
45
46
47
48
49
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 = local.aws_service_domain_arn
description = "ARN of the Elasticsearch domain"
}
output "domain_id" {
value = local.aws_service_domain_id
description = "Unique identifier for the Elasticsearch domain"
}
output "domain_name" {
value = local.aws_service_domain_name
description = "Name of the Elasticsearch domain"
}
output "domain_endpoint" {
value = local.aws_service_domain_endpoint
description = "Domain-specific endpoint used to submit index, search, and data upload requests"
}
output "kibana_endpoint" {
value = local.aws_service_domain_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"
}