tfmask
tfmask copied to clipboard
Heredoc syntax doesn't get picked up
Thanks for putting this together. Quick bug report - if you create something like an aws_s3_bucket_object like so..
resource "aws_s3_bucket_object" "test_item" {
bucket = "..."
key = "..."
content = <<EOT
Alll the content in here. Do do do, content, content, content.
EOT
}
it seems that the item gets ignored when trying to filter - it'll show up something like this if any part of it is updated:
~ resource "aws_s3_bucket_object" "test_item" {
key = "..."
bucket = "..."
content = <<~EOT
Alll the content in here. Do do do, content, content, content.
EOT
}
👍