-
-
Notifications
You must be signed in to change notification settings - Fork 230
/
outputs.tf
59 lines (48 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
output "public_subnet_cidrs" {
value = module.subnets.public_subnet_cidrs
description = "Public subnet CIDRs"
}
output "private_subnet_cidrs" {
value = module.subnets.private_subnet_cidrs
description = "Private subnet CIDRs"
}
output "vpc_cidr" {
value = module.vpc.vpc_cidr_block
description = "VPC CIDR"
}
output "security_group_id" {
value = module.elasticsearch.security_group_id
description = "Security Group ID to control access to the Elasticsearch domain"
}
output "domain_arn" {
value = module.elasticsearch.domain_arn
description = "ARN of the Elasticsearch domain"
}
output "domain_id" {
value = module.elasticsearch.domain_id
description = "Unique identifier for the Elasticsearch domain"
}
output "domain_endpoint" {
value = module.elasticsearch.domain_endpoint
description = "Domain-specific endpoint used to submit index, search, and data upload requests"
}
output "kibana_endpoint" {
value = module.elasticsearch.kibana_endpoint
description = "Domain-specific endpoint for Kibana without https scheme"
}
output "domain_hostname" {
value = module.elasticsearch.domain_hostname
description = "Elasticsearch domain hostname to submit index, search, and data upload requests"
}
output "kibana_hostname" {
value = module.elasticsearch.kibana_hostname
description = "Kibana hostname"
}
output "elasticsearch_user_iam_role_name" {
value = module.elasticsearch.elasticsearch_user_iam_role_name
description = "The name of the IAM role to allow access to Elasticsearch cluster"
}
output "elasticsearch_user_iam_role_arn" {
value = module.elasticsearch.elasticsearch_user_iam_role_arn
description = "The ARN of the IAM role to allow access to Elasticsearch cluster"
}