Skip to content

Commit

Permalink
add lb arn to output (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lucas authored Feb 10, 2020
1 parent bc12794 commit cdf1b15
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions terraform/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ output "lb-zone-id" {
value = aws_lb.lb.zone_id
}

output "lb-arn" {
value = aws_lb.lb.arn
}

output "roxprox-envoy-sg" {
value = var.loadbalancer == "alb" ? aws_security_group.roxprox-envoy-alb[0].id : aws_security_group.roxprox-envoy-nlb[0].id
}
value = var.loadbalancer == "alb" ? aws_security_group.roxprox-envoy-alb[0].id : aws_security_group.roxprox-envoy-nlb[0].id
}

0 comments on commit cdf1b15

Please sign in to comment.