From 1055865142c5d73556d221696ef31e4a4c21a2a0 Mon Sep 17 00:00:00 2001 From: Noah White Date: Fri, 30 Jan 2026 03:53:01 +0000 Subject: [PATCH] Fix vultr-cli attach flag: --instance-id to --instance --- opentofu/modules/vultr/block_storage/main.tofu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/opentofu/modules/vultr/block_storage/main.tofu b/opentofu/modules/vultr/block_storage/main.tofu index 7f9e1b7..d4ba145 100644 --- a/opentofu/modules/vultr/block_storage/main.tofu +++ b/opentofu/modules/vultr/block_storage/main.tofu @@ -72,7 +72,7 @@ resource "null_resource" "attach_block_storage" { # Attach to the new instance echo "Attaching block storage to instance $INSTANCE_ID..." - vultr-cli block-storage attach "$BLOCK_STORAGE_ID" --instance-id="$INSTANCE_ID" --live || true + vultr-cli block-storage attach "$BLOCK_STORAGE_ID" --instance="$INSTANCE_ID" --live || true # Verify attachment echo "Verifying block storage attachment..."