10 lines
360 B
HCL
10 lines
360 B
HCL
output "public_ingress_load_balancer" {
|
|
description = "The internet facing Load Balancer object created by the ingress controller deployment"
|
|
value = data.aws_lb.public
|
|
}
|
|
|
|
output "internal_ingress_load_balancer" {
|
|
description = "The internal Load Balancer object created by the ingress controller deployment"
|
|
value = data.aws_lb.internal
|
|
}
|