forked from cn-terraform/terraform-aws-sonarqube
-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
28 lines (23 loc) · 835 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#------------------------------------------------------------------------------
# SonarQube ALB DNS
#------------------------------------------------------------------------------
output "sonar_lb_id" {
description = "SonarQube Load Balancer ID"
value = module.ecs_fargate.aws_lb_lb_id
}
output "sonar_lb_arn" {
description = "SonarQube Load Balancer ARN"
value = module.ecs_fargate.aws_lb_lb_arn
}
output "sonar_lb_arn_suffix" {
description = "SonarQube Load Balancer ARN Suffix"
value = module.ecs_fargate.aws_lb_lb_arn_suffix
}
output "sonar_lb_dns_name" {
description = "SonarQube Load Balancer DNS Name"
value = module.ecs_fargate.aws_lb_lb_dns_name
}
output "sonar_lb_zone_id" {
description = "SonarQube Load Balancer Zone ID"
value = module.ecs_fargate.aws_lb_lb_zone_id
}