From e976e002e16b7340eadec570b7edb732a97391f3 Mon Sep 17 00:00:00 2001 From: Vincent Chau <99756290+vincentwschau@users.noreply.github.com> Date: Wed, 8 Nov 2023 13:25:58 -0500 Subject: [PATCH] Fix the S3 bucket name passed to the snapshot task. --- indexer/snapshot_full_node_ap_northeast_1.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indexer/snapshot_full_node_ap_northeast_1.tf b/indexer/snapshot_full_node_ap_northeast_1.tf index 832c905c..4b8ae8e1 100644 --- a/indexer/snapshot_full_node_ap_northeast_1.tf +++ b/indexer/snapshot_full_node_ap_northeast_1.tf @@ -50,7 +50,7 @@ module "full_node_snapshot_ap_northeast_1" { join(" ", [ "/dydxprotocol/snapshot.sh", "--s3_snapshot_bucket", - var.s3_snapshot_bucket, + aws_s3_bucket.indexer_full_node_snapshots.id, "--genesis_file_rpc_address", format("http://%s:26657", split(":", split("@", var.full_node_container_p2p_persistent_peers[0])[1]