-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathoutputs.tf
79 lines (64 loc) · 2.37 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
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_name" {
value = module.elasticsearch.domain_name
description = "Name of 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"
}
output "lambda_security_group_id" {
value = module.elasticsearch_cleanup.security_group_id
description = "Security Group ID of the Lambda Function"
}
output "lambda_function_arn" {
value = module.elasticsearch_cleanup.lambda_function_arn
description = "ARN of the Lambda Function"
}
output "lambda_function_source_code_size" {
value = module.elasticsearch_cleanup.lambda_function_source_code_size
description = "The size in bytes of the function .zip file"
}