-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathoutputs.tf
29 lines (24 loc) · 842 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
28
29
output "public_ip_prometheus" {
value = module.prometheus.public_ip
description = "Public IPv4 address of Prometheus instance"
}
output "private_ip_prometheus" {
value = module.prometheus.private_ip
description = "Private IPv4 address of Prometheus instance"
}
output "public_ip_alertmanager" {
value = module.alertmanager.public_ip
description = "Public IPv4 address of Alertmanager instance"
}
output "private_ip_alertmanager" {
value = module.alertmanager.private_ip
description = "Private IPv4 address of Alertmanager instance"
}
output "public_ip_grafana" {
value = module.grafana.public_ip
description = "Public IPv4 address of Grafana instance"
}
output "private_ip_grafana" {
value = module.grafana.private_ip
description = "Private IPv4 address of Grafana instance"
}