-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
outputs.tf
83 lines (69 loc) · 2.5 KB
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#------------------------------------------------------------------------------
# Jenkins
#------------------------------------------------------------------------------
output "jenkins_master_alb_id" {
description = "Jenkins Master Application Load Balancer ID"
value = module.jenkins.jenkins_master_alb_id
}
output "jenkins_master_alb_arn" {
description = "Jenkins Master Application Load Balancer ARN"
value = module.jenkins.jenkins_master_alb_arn
}
output "jenkins_master_alb_arn_suffix" {
description = "Jenkins Master Application Load Balancer ARN Suffix"
value = module.jenkins.jenkins_master_alb_arn_suffix
}
output "jenkins_master_alb_dns_name" {
description = "Jenkins Master Application Load Balancer DNS Name"
value = module.jenkins.jenkins_master_alb_dns_name
}
output "jenkins_master_alb_zone_id" {
description = "Jenkins Master Application Load Balancer Zone ID"
value = module.jenkins.jenkins_master_alb_zone_id
}
#------------------------------------------------------------------------------
# SonarQube ALB DNS
#------------------------------------------------------------------------------
output "sonar_lb_id" {
description = "SonarQube Load Balancer ID"
value = module.sonar.sonar_lb_id
}
output "sonar_lb_arn" {
description = "SonarQube Load Balancer ARN"
value = module.sonar.sonar_lb_arn
}
output "sonar_lb_arn_suffix" {
description = "SonarQube Load Balancer ARN Suffix"
value = module.sonar.sonar_lb_arn_suffix
}
output "sonar_lb_dns_name" {
description = "SonarQube Load Balancer DNS Name"
value = module.sonar.sonar_lb_dns_name
}
output "sonar_lb_zone_id" {
description = "SonarQube Load Balancer Zone ID"
value = module.sonar.sonar_lb_zone_id
}
#------------------------------------------------------------------------------
# Nexus ALB DNS
#------------------------------------------------------------------------------
output "nexus_lb_id" {
description = "Nexus Load Balancer ID"
value = module.nexus.nexus_lb_id
}
output "nexus_lb_arn" {
description = "Nexus Load Balancer ARN"
value = module.nexus.nexus_lb_arn
}
output "nexus_lb_arn_suffix" {
description = "Nexus Load Balancer ARN Suffix"
value = module.nexus.nexus_lb_arn_suffix
}
output "nexus_lb_dns_name" {
description = "Nexus Load Balancer DNS Name"
value = module.nexus.nexus_lb_dns_name
}
output "nexus_lb_zone_id" {
description = "Nexus Load Balancer Zone ID"
value = module.nexus.nexus_lb_zone_id
}