configs: Fix typo in the deprecation warning about ignore_changes = ["*"]

This commit is contained in:
Martin Atkins 2018-05-04 19:24:38 -07:00
parent 4a21b763aa
commit cd584309b9
1 changed files with 1 additions and 1 deletions

View File

@ -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