tfmask icon indicating copy to clipboard operation
tfmask copied to clipboard

Heredoc syntax doesn't get picked up

Open stephenliberty opened this issue 4 years ago • 1 comments

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
     }

stephenliberty avatar Jun 10 '20 16:06 stephenliberty

👍

alexismosquera avatar Jan 03 '23 12:01 alexismosquera