How to enable tailoring for Terraform subsystem? #18466
-
Hello, I am currently evaluating Pants as an option for my team's monorepo. Setting up everything has been easy so far, but I am struggling to figure out how to get Pants to recognize our terraform files? [GLOBAL]
pants_version = "2.15.0"
backend_packages = [
"pants.backend.python",
"pants.backend.experimental.java",
"pants.backend.experimental.scala",
"pants.backend.experimental.terraform"
]
[source]
root_patterns = [ "src", "terraform" ]
marker_filenames = [ "setup.py" ]
[jvm]
jdk = "termurin:1.17.0.6"
[scala.version_for_resolve]
jvm-default = "2.13.8" And my directory structure is as follows. Notice the directory structures are slightly different for Python vs. Java/Scala. I'm assuming this is allowed. I did try removing the Python project but still no dice.
Running
Apologies if it's something obvious! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Whelp, just realized I did something incredibly dumb and forgot to save my |
Beta Was this translation helpful? Give feedback.
Whelp, just realized I did something incredibly dumb and forgot to save my
.tf
files, which is why it wasn't working.