11e342a9f7
---ci--- project: nova-platform phase: 3 milestone: v1.0 status: complete ---/ci--- P3 complete: 13 L1 primitives + registry + module docs. 68 tests pass. REQ-10,11,13,34 covered.
14 lines
386 B
Terraform
14 lines
386 B
Terraform
output "lb_arn" {
|
|
value = var.enabled ? aws_lb.this[0].arn : null
|
|
description = "The load balancer ARN."
|
|
}
|
|
|
|
output "dns_name" {
|
|
value = var.enabled ? aws_lb.this[0].dns_name : null
|
|
description = "The load balancer DNS name."
|
|
}
|
|
|
|
output "target_group_arn" {
|
|
value = var.enabled ? aws_lb_target_group.this[0].arn : null
|
|
description = "The target group ARN."
|
|
} |