TFNFR10 - No Double Quotes in ignore_changes
ID: TFNFR10 - Category: Code Style - No Double Quotes in ignore_changes
The ignore_changes attribute MUST NOT be enclosed in double quotes.
Good example:
lifecycle {
    ignore_changes = [
      tags,
    ]
}Bad example:
lifecycle {
    ignore_changes = [
      "tags",
    ]
}