avx-pmarie-aws-infra/modules/eks-ingress-controller/outputs.tf

10 lines
360 B
Terraform
Raw Normal View History

2022-07-01 14:12:11 +02:00
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
}