10 lines
360 B
Terraform
10 lines
360 B
Terraform
|
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
|
||
|
}
|