We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 446a94a + 3deee56 commit dcc4e4fCopy full SHA for dcc4e4f
spartan/terraform/gke-cluster/network-ingress.tf
@@ -90,7 +90,8 @@ locals {
90
devnet_offset = 6 # deprecated. Naming has changed
91
92
devnets = [
93
- "v4-devnet-1"
+ "v4-devnet-1",
94
+ "v4-devnet-2"
95
]
96
}
97
spartan/terraform/gke-cluster/outputs.tf
@@ -7,3 +7,14 @@ output "region" {
7
value = var.region
8
9
10
+output "devnet_network_rpc_ips" {
11
+ description = "Static IPs and hostnames for v4 devnet networks"
12
+ value = {
13
+ for name, addr in google_compute_global_address.devnet_network_rpc_ip :
14
+ name => {
15
+ ip = addr.address
16
+ hostname = "${name}.aztec-labs.com"
17
+ }
18
19
+}
20
+
0 commit comments