Skip to content

Commit c7b29b3

Browse files
authored
fix: update for new p2p bootstrap node names (AztecProtocol#3710)
Please provide a paragraph or two giving a summary of the change, including relevant motivation and context. # Checklist: Remove the checklist to signal you've completed it. Enable auto-merge if the PR is ready to merge. - [ ] If the pull request requires a cryptography review (e.g. cryptographic algorithm implementations) I have added the 'crypto' tag. - [ ] I have reviewed my diff in github, line by line and removed unexpected formatting changes, testing logs, or commented-out code. - [ ] Every change is related to the PR description. - [ ] I have [linked](https://docs.github.com/en/issues/tracking-your-work-with-issues/linking-a-pull-request-to-an-issue) this pull request to relevant issues (if any exist).
1 parent 6c4bf75 commit c7b29b3

File tree

1 file changed

+1
-1
lines changed
  • yarn-project/aztec-node/terraform

1 file changed

+1
-1
lines changed

yarn-project/aztec-node/terraform/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ locals {
5959
node_p2p_private_keys = [var.NODE_1_PRIVATE_KEY, var.NODE_2_PRIVATE_KEY]
6060
node_count = length(local.publisher_private_keys)
6161
bootnodes = [for i in range(0, local.node_count) :
62-
"/dns4/${var.DEPLOY_TAG}-aztec-bootstrap-${i + 1}.local/tcp/${var.BOOTNODE_LISTEN_PORT + i}/p2p/${local.bootnode_ids[i]}"
62+
"/dns4/${var.DEPLOY_TAG}-p2p-bootstrap-${i + 1}.local/tcp/${var.BOOTNODE_LISTEN_PORT + i}/p2p/${local.bootnode_ids[i]}"
6363
]
6464
combined_bootnodes = join(",", local.bootnodes)
6565
data_dir = "/usr/src/yarn-project/aztec-sandbox/data"

0 commit comments

Comments
 (0)