-
Notifications
You must be signed in to change notification settings - Fork 41
/
output.tf
43 lines (33 loc) · 937 Bytes
/
output.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
output "google_project" {
value = local.google_project_id
}
output "mithril_aggregator_endpoint" {
value = local.mithril_aggregator_endpoint_url
}
output "mithril_signers_endpoint_url" {
value = local.mithril_signers_endpoint_url
}
output "prometheus_endpoint_url" {
value = local.prometheus_endpoint_url
}
output "loki_endpoint_url" {
value = local.loki_endpoint_url
}
output "storage_bucket" {
value = google_storage_bucket.cloud_storage.name
}
output "external-ip" {
value = google_compute_address.mithril-external-address.address
}
output "api_subdomain" {
value = google_dns_managed_zone.mithril-api-zone.dns_name
}
output "name_servers" {
value = google_dns_managed_zone.mithril-api-zone.name_servers
}
output "mithril_aggregator_relay_p2p_dial_to" {
value = local.mithril_aggregator_relay_p2p_dial_to
}
output "mithril_signers_relay_p2p_dial_to" {
value = local.mithril_signers_relay_p2p_dial_to
}