# locals { # compose_content = file("${path.module}/paperless-ngx/docker-compose.yml") # } # # # Force update when content changes # resource "null_resource" "paperless_compose_update" { # triggers = { # content_hash = md5(local.compose_content) # } # # # Optional: run docker-compose commands manually if needed # # (only needed if you want full control; otherwise just use for dependency) # provisioner "local-exec" { # interpreter = ["bash", "-c"] # command = <