From cd584309b901ae24490b29dbd471c8e7e17da058 Mon Sep 17 00:00:00 2001 From: Martin Atkins Date: Fri, 4 May 2018 19:24:38 -0700 Subject: [PATCH] configs: Fix typo in the deprecation warning about ignore_changes = ["*"] --- configs/resource.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/resource.go b/configs/resource.go index 87d8333153..d726a985b2 100644 --- a/configs/resource.go +++ b/configs/resource.go @@ -189,7 +189,7 @@ func decodeResourceBlock(block *hcl.Block) (*Resource, hcl.Diagnostics) { diags = append(diags, &hcl.Diagnostic{ Severity: hcl.DiagWarning, Summary: "Deprecated ignore_changes wildcard", - Detail: "The [\"*\"] form of ignore_changes wildcard is reprecated. Use \"ignore_changes = all\" to ignore changes to all attributes.", + Detail: "The [\"*\"] form of ignore_changes wildcard is deprecated. Use \"ignore_changes = all\" to ignore changes to all attributes.", Subject: attr.Expr.Range().Ptr(), }) continue