Skip to content

Commit 67853d8

Browse files
committed
Show resource name in taint -allow-missing warning
Show the resource name in the warning when allow-missing is used and no resource matches
1 parent 61f9d21 commit 67853d8

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

command/taint.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ func (c *TaintCommand) allowMissingExit(name addrs.AbsResourceInstance) int {
267267
c.showDiagnostics(tfdiags.Sourceless(
268268
tfdiags.Warning,
269269
"No such resource instance",
270-
"Resource instance %s was not found, but this is not an error because -allow-missing was set.",
270+
fmt.Sprintf("Resource instance %s was not found, but this is not an error because -allow-missing was set.", name),
271271
))
272272
return 0
273273
}

command/taint_test.go

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import (
55
"strings"
66
"testing"
77

8+
"github.com/google/go-cmp/cmp"
89
"github.com/mitchellh/cli"
910

1011
"github.com/hashicorp/terraform/addrs"
@@ -357,6 +358,18 @@ func TestTaint_missingAllow(t *testing.T) {
357358
if code := c.Run(args); code != 0 {
358359
t.Fatalf("bad: %d\n\n%s", code, ui.ErrorWriter.String())
359360
}
361+
362+
// Check for the warning
363+
actual := strings.TrimSpace(ui.ErrorWriter.String())
364+
expected := strings.TrimSpace(`
365+
Warning: No such resource instance
366+
367+
Resource instance test_instance.bar was not found, but this is not an error
368+
because -allow-missing was set.
369+
`)
370+
if diff := cmp.Diff(expected, actual); diff != "" {
371+
t.Fatalf("wrong output\n%s", diff)
372+
}
360373
}
361374

362375
func TestTaint_stateOut(t *testing.T) {

0 commit comments

Comments
 (0)