From d83cd73ecfaa84ce3436698578e570670e08048d Mon Sep 17 00:00:00 2001 From: Daniel Schmidt Date: Wed, 3 Sep 2025 14:58:10 +0200 Subject: [PATCH] fix action reference --- internal/command/testdata/show-json-actions/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/command/testdata/show-json-actions/main.tf b/internal/command/testdata/show-json-actions/main.tf index 6702b76e0f..6c7d378a61 100644 --- a/internal/command/testdata/show-json-actions/main.tf +++ b/internal/command/testdata/show-json-actions/main.tf @@ -19,7 +19,7 @@ resource "test_instance" "test" { lifecycle { action_trigger { events = [before_create] - actions = [action.test_action.hello] + actions = [action.test_action.hello[0]] } } }