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