|
1 | | -resource "google_compute_global_address" "staging_public_rpc_ip" { |
2 | | - name = "staging-public-rpc-ip" |
3 | | - description = "Static IP for staging-public network RPC ingress" |
| 1 | +resource "google_compute_global_address" "testnet_rpc_ip" { |
| 2 | + name = "testnet-rpc-ip" |
| 3 | + description = "Static IP for testnet RPC ingress" |
4 | 4 |
|
5 | 5 | lifecycle { |
6 | 6 | prevent_destroy = true |
7 | 7 | } |
8 | 8 | } |
9 | 9 |
|
10 | | -resource "google_compute_managed_ssl_certificate" "staging_public_rpc_cert" { |
11 | | - name = "staging-public-rpc-cert" |
12 | | - description = "Managed SSL certificate for staging-public RPC ingress" |
| 10 | +resource "google_compute_managed_ssl_certificate" "testnet_rpc_cert" { |
| 11 | + name = "testnet-rpc-cert" |
| 12 | + description = "Managed SSL certificate for testnet RPC ingress" |
13 | 13 |
|
14 | 14 | managed { |
15 | | - domains = ["staging.alpha-testnet.aztec-labs.com"] |
| 15 | + domains = ["rpc.testnet.aztec-labs.com"] |
16 | 16 | } |
17 | 17 |
|
18 | 18 | lifecycle { |
19 | 19 | prevent_destroy = true |
20 | 20 | } |
21 | 21 | } |
22 | 22 |
|
23 | | -resource "google_compute_global_address" "testnet_rpc_ip" { |
24 | | - name = "testnet-rpc-ip" |
25 | | - description = "Static IP for testnet RPC ingress" |
| 23 | +resource "google_compute_global_address" "nextnet_rpc_ip" { |
| 24 | + name = "nextnet-rpc-ip" |
| 25 | + description = "Static IP for nextnet RPC ingress" |
26 | 26 |
|
27 | 27 | lifecycle { |
28 | 28 | prevent_destroy = true |
29 | 29 | } |
30 | 30 | } |
31 | 31 |
|
32 | | -resource "google_compute_managed_ssl_certificate" "testnet_rpc_cert" { |
33 | | - name = "testnet-rpc-cert" |
34 | | - description = "Managed SSL certificate for testnet RPC ingress" |
| 32 | +resource "google_compute_managed_ssl_certificate" "nextnet_rpc_cert" { |
| 33 | + name = "nextnet-rpc-cert" |
| 34 | + description = "Managed SSL certificate for nextnet RPC ingress" |
35 | 35 |
|
36 | 36 | managed { |
37 | | - domains = ["rpc.testnet.aztec-labs.com"] |
| 37 | + domains = ["nextnet.aztec-labs.com"] |
38 | 38 | } |
39 | 39 |
|
40 | 40 | lifecycle { |
|
0 commit comments