From 98c1767ffb1d43d1ac7b4494e7b420290a0d293d Mon Sep 17 00:00:00 2001 From: "blink-so[bot]" <211532188+blink-so[bot]@users.noreply.github.com> Date: Thu, 5 Feb 2026 06:51:32 +0000 Subject: [PATCH] fix: terraform fmt alignment --- registry/coder-labs/modules/gcp-disk-snapshot/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/coder-labs/modules/gcp-disk-snapshot/main.tf b/registry/coder-labs/modules/gcp-disk-snapshot/main.tf index de4f433c..5677a092 100644 --- a/registry/coder-labs/modules/gcp-disk-snapshot/main.tf +++ b/registry/coder-labs/modules/gcp-disk-snapshot/main.tf @@ -130,7 +130,7 @@ locals { # Calculate next slot to use (round-robin) # Count existing snapshots and use next slot, or slot 1 if all are full - next_slot_index = length(local.existing_snapshot_names) >= var.snapshot_retention_count ? 0 : length(local.existing_snapshot_names) + next_slot_index = length(local.existing_snapshot_names) >= var.snapshot_retention_count ? 0 : length(local.existing_snapshot_names) next_snapshot_name = local.snapshot_slot_names[local.next_slot_index] }