Skip to content

Commit

Permalink
chore: Sync alphanet back to master (#7970)
Browse files Browse the repository at this point in the history
Co-authored-by: PhilWindle <philip.windle@gmail.com>
  • Loading branch information
spalladino and PhilWindle authored Aug 15, 2024
1 parent ebffe96 commit 523724d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions yarn-project/aztec/terraform/prover-node/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ resource "aws_ecs_task_definition" "aztec-prover-node" {
environment = [
// General
{ name = "NODE_ENV", value = "production" },
{ name = "LOG_LEVEL", value = "info" },
{ name = "LOG_LEVEL", value = "debug" },
{ name = "DEBUG", value = "aztec:*,-json-rpc:json_proxy:*,-aztec:avm_simulator:*" },
{ name = "DEPLOY_TAG", value = var.DEPLOY_TAG },
{ name = "NETWORK_NAME", value = "${var.DEPLOY_TAG}" },
Expand All @@ -208,8 +208,8 @@ resource "aws_ecs_task_definition" "aztec-prover-node" {
{ name = "PROVER_AGENT_ENABLED", value = "false" },
{ name = "PROVER_AGENT_CONCURRENCY", value = "0" },
{ name = "PROVER_REAL_PROOFS", value = tostring(var.PROVING_ENABLED) },
{ name = "BB_WORKING_DIRECTORY", value = "${local.data_dir}/node_${count.index + 1}/temp" },
{ name = "ACVM_WORKING_DIRECTORY", value = "${local.data_dir}/node_${count.index + 1}/temp" },
{ name = "BB_WORKING_DIRECTORY", value = "${local.data_dir}/prover_node_${count.index + 1}/temp" },
{ name = "ACVM_WORKING_DIRECTORY", value = "${local.data_dir}/prover_node_${count.index + 1}/temp" },

// Metrics
{ name = "OTEL_EXPORTER_OTLP_ENDPOINT", value = "http://aztec-otel.local:4318" },
Expand Down Expand Up @@ -300,7 +300,7 @@ resource "aws_ecs_service" "aztec-prover-node" {
# Configure ALB to route /aztec-prover-node to server.
resource "aws_alb_target_group" "aztec-prover-node-http" {
count = local.node_count
name = "${var.DEPLOY_TAG}-node-${count.index + 1}-http-target"
name = "${var.DEPLOY_TAG}-prover-${count.index + 1}-target"
port = 80
protocol = "HTTP"
target_type = "ip"
Expand Down

0 comments on commit 523724d

Please sign in to comment.