File tree Expand file tree Collapse file tree
terraform/deploy-aztec-infra Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -39,8 +39,6 @@ SEQ_MAX_TX_PER_CHECKPOINT=12
3939SEQ_BUILD_CHECKPOINT_IF_EMPTY = true
4040SEQ_BLOCK_DURATION_MS = 5500
4141
42- AZTEC_LAG_IN_EPOCHS_FOR_VALIDATOR_SET = 2
43- AZTEC_LAG_IN_EPOCHS_FOR_RANDAO = 2
4442AZTEC_INBOX_LAG = 2
4543
4644VALIDATOR_REPLICAS = 2
Original file line number Diff line number Diff line change @@ -6,6 +6,12 @@ NAMESPACE=${NAMESPACE:-testnet-v4}
66NETWORK = testnet
77
88RPC_GATEWAY_ENABLED = false
9+ PROVER_NODE_RPC_GATEWAY_ENABLED = true
10+ RPC_GATEWAY_FRONTEND_STATIC_IP_NAME = testnet-v4-infra-rpc-frontend
11+ RPC_GATEWAY_KONG_HELM_RELEASE_NAME = testnet-v4-infra-rpc-kong
12+ RPC_GATEWAY_KONG_INGRESS_CLASS = testnet-v4-infra-rpc-kong
13+ PROVER_NODE_RPC_GATEWAY_HOSTS = ' ["prover-v4.testnet.rpc.aztec-labs.com"]'
14+ PROVER_NODE_RPC_GATEWAY_API_KEY_SECRET_NAMES = ' ["testnet-prover-rpc-consumer-client1"]'
915
1016REAL_VERIFIER = true
1117
Original file line number Diff line number Diff line change @@ -26,13 +26,10 @@ VERIFY_CONTRACTS=true
2626ETHERSCAN_API_KEY = REPLACE_WITH_GCP_SECRET
2727
2828CREATE_ROLLUP_CONTRACTS = true
29- VERIFY_CONTRACTS = true
3029
3130DESTROY_NAMESPACE = true
3231DESTROY_AZTEC_INFRA = true
3332
34- OTEL_COLLECTOR_ENDPOINT = REPLACE_WITH_GCP_SECRET
35-
3633AZTEC_MANA_TARGET = 2147483647
3734
3835VALIDATOR_REPLICAS = 12
Original file line number Diff line number Diff line change @@ -584,7 +584,6 @@ L1_CONSENSUS_HOST_API_KEY_HEADERS = ${L1_CONSENSUS_HOST_API_KEY_HEADERS_JSON:-nu
584584REGISTRY_CONTRACT_ADDRESS = "${REGISTRY_ADDRESS} "
585585ROLLUP_VERSION = "${ROLLUP_VERSION} "
586586FEE_ASSET_HANDLER_CONTRACT_ADDRESS = "${FEE_ASSET_HANDLER_ADDRESS} "
587- ROLLUP_VERSION = "${ROLLUP_VERSION:- } "
588587VALIDATOR_MNEMONIC = "${LABS_INFRA_MNEMONIC} "
589588VALIDATOR_MNEMONIC_START_INDEX = ${VALIDATOR_MNEMONIC_START_INDEX}
590589VALIDATOR_PUBLISHER_MNEMONIC_START_INDEX = ${VALIDATOR_PUBLISHER_MNEMONIC_START_INDEX}
Original file line number Diff line number Diff line change @@ -184,7 +184,6 @@ locals {
184184 " global.aztecEnv.ROLLUP_VERSION" = var.ROLLUP_VERSION
185185 " global.customAztecNetwork.feeAssetHandlerContractAddress" = var.FEE_ASSET_HANDLER_CONTRACT_ADDRESS
186186 " global.customAztecNetwork.l1ChainId" = var.L1_CHAIN_ID
187- " global.aztecEnv.ROLLUP_VERSION" = var.ROLLUP_VERSION
188187 " global.otelCollectorEndpoint" = var.OTEL_COLLECTOR_ENDPOINT
189188 " global.sponsoredFPC" = var.SPONSORED_FPC
190189 " global.testAccounts" = var.TEST_ACCOUNTS
Original file line number Diff line number Diff line change @@ -174,12 +174,6 @@ variable "FEE_ASSET_HANDLER_CONTRACT_ADDRESS" {
174174 type = string
175175}
176176
177- variable "ROLLUP_VERSION" {
178- description = " Rollup version selected from the registry. Leave empty to use the canonical rollup."
179- type = string
180- default = " "
181- }
182-
183177variable "VALIDATOR_MNEMONIC" {
184178 description = " The validator mnemonic"
185179 type = string
You can’t perform that action at this time.
0 commit comments