-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutput.tf
51 lines (41 loc) · 1.28 KB
/
output.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
# ################################################################################
# # API
# ################################################################################
# output "api_endpoint" {
# description = "API address"
# value = module.authenticator_api.endpoint
# }
# output "api" {
# description = "API address"
# value = module.authenticator_api
# }
# ################################################################################
# # VPC
# ################################################################################
# # output "vpc" {
# # value = data.aws_vpc.bmb_vpc.id
# # }
# # output "subnets" {
# # value = data.aws_subnets.private_subnets.ids
# # }
# ################################################################################
# # LB
# ################################################################################
# # output "internal_elb" {
# # value = data.aws_lb_listener.nlb_listener.arn
# # }
# output "payment_elb" {
# value = data.aws_lb.eks_payment_elb
# }
# output "kitchen_elb" {
# value = data.aws_lb.eks_kitchen_elb
# }
# output "path" {
# value = "${path.cwd}/${data.archive_file.lambda_zip.id}"
# }
# output "file" {
# value = data.archive_file.lambda_zip
# }
output "load_balancer_map" {
value = local.elb_map
}