From bb9ccefe8e2c729140756db35f5d720ad5dd8601 Mon Sep 17 00:00:00 2001 From: "Luis M. Gallardo D." Date: Sun, 10 Aug 2025 00:37:11 +0200 Subject: [PATCH] test: add file with intentional formatting issues This file contains various formatting issues to test the pre-commit workflow: - Extra trailing whitespace - Missing final newline - Inconsistent indentation - Improper spacing around operators - Missing spaces after braces --- test_formatting.tf | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 test_formatting.tf diff --git a/test_formatting.tf b/test_formatting.tf new file mode 100644 index 0000000..e41283c --- /dev/null +++ b/test_formatting.tf @@ -0,0 +1,15 @@ +# Test file with intentional formatting issues +# This will test the pre-commit workflow + +resource "aws_backup_vault" "test" { + name = "test-vault" + # Extra trailing whitespace above and missing newline below + kms_key_arn = aws_kms_key.backup.arn +} + +resource "aws_kms_key" "backup"{description="Test KMS key" + + # Inconsistent indentation and spacing +deletion_window_in_days=7} + +# Missing final newline \ No newline at end of file