Skip to content

Commit

Permalink
fix: prover env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr committed Aug 7, 2024
1 parent c761c92 commit ffe5408
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
6 changes: 5 additions & 1 deletion yarn-project/aztec/terraform/node/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,11 @@ resource "aws_ecs_task_definition" "aztec-node" {
value = tostring(var.P2P_TX_POOL_KEEP_PROVEN_FOR)
},
{
name = "PROVER_AGENTS"
name = "PROVER_AGENT_ENABLED"
value = "false"
},
{
name = "PROVER_AGENT_CONCURRENCY",
value = "0"
},
{
Expand Down
6 changes: 5 additions & 1 deletion yarn-project/aztec/terraform/prover/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,11 @@ resource "aws_ecs_task_definition" "aztec-proving-agent" {
"value": "http://${var.DEPLOY_TAG}-aztec-node-${count.index + 1}.local/${var.DEPLOY_TAG}/aztec-node-${count.index + 1}/${var.API_KEY}"
},
{
"name": "PROVER_AGENTS",
"name": "PROVER_AGENT_ENABLED",
"value": "true"
},
{
"name": "PROVER_AGENT_CONCURRENCY",
"value": "1"
},
{
Expand Down

0 comments on commit ffe5408

Please sign in to comment.