-
Notifications
You must be signed in to change notification settings - Fork 1
/
packagerules-disable.json
24 lines (24 loc) · 2.04 KB
/
packagerules-disable.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": "### Package Rules to Always Disable\n\nThese rules are designed to always be disabled to avoid edge cases or problematic updates.\n\n#### Custom Managers\n\n- **Terraform Reusable Module Provider Versions**: \n - Bypasses pinning terraform reusable module provider versions.\n - Terraform files in the root are reusable modules, not 'root modules', using the cloudposse module project structure.\n - These should _not_ pin provider versions but honor a minimum range to avoid failure with pinned root modules calling a module with a different version, which would cause an error.\n - Examples nested directory should still version pin.\n - [Renovate Schema](https://docs.renovatebot.com/renovate-schema.json)\n",
"packageRules": [
{
"description": "Bypasses pinning terraform reusable module provider versions. Terraform files in the root are reusable modules, not 'root modules', using the cloudposse module project structure. These should _not_ pin provider versions but honor a minimum range to avoid failure with pinned root modules calling a module with a different version, which would cause an error. Examples nested directory should still version pin.",
"enabled": false,
"matchFileNames": ["*.tf"],
"matchDatasources": ["terraform-provider"],
"matchUpdateTypes": ["pin"]
},
{
"matchDatasources": ["golang-version"],
"description": "Opt-out minimum Go version updates. See [issue #16715](https://github.com/renovatebot/renovate/issues/16715) and [Go Modules Directive Versioning](https://docs.renovatebot.com/modules/versioning/#go-modules-directive-versioning).",
"enabled": false
},
{
"description": "Terraform version is not pinned, as this CLI version is often managed with tooling like `aqua` or called via plugins. Until it's determined to be worth it, let's avoid constant updates.",
"matchDepTypes": ["required_version"],
"matchManagers": ["terraform"],
"enabled": false
}
]
}