Function: projectile-terraform-project-p
projectile-terraform-project-p is a byte-compiled function defined in
projectile.el.
Signature
(projectile-terraform-project-p &optional DIR)
Documentation
Check if a project contains Terraform configuration files.
When DIR is specified it checks DIR's project, otherwise it acts on the current project.
Source Code
;; Defined in ~/.emacs.d/elpa/projectile-20260820.1509/projectile.el
(defun projectile-terraform-project-p (&optional dir)
"Check if a project contains Terraform configuration files.
When DIR is specified it checks DIR's project, otherwise
it acts on the current project."
(projectile-verify-file-wildcard "?*.tf" dir))