We are using Renovate to update our dependencies. Unfortunately the Terraform manager updates the provider versions of modules too. We don't want this as we specify minimum versions.
I know how to exclude whole paths from the Renovate analysis (ignorePaths) and how to add further RexEx to analyze files not included in the default RexEx of the manager. But how to replace the default RegEx for fileMatch?
"terraform" {"override-fileMatch": "^(?!modules\/.*providers.tf).*\.tf$"}
You are looking for this config:
{
"terraform": {
"fileMatch": [
"^(?!modules\/.*providers.tf).*\.tf$"
]
}
}