0
0
mirror of https://github.com/thegeeklab/renovate-presets.git synced 2024-10-22 22:10:40 +00:00
renovate-presets/opentofu.json

26 lines
761 B
JSON

{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"description": ["Preset for use with OpenTofu"],
"extends": ["github>thegeeklab/renovate-presets:base"],
"packageRules": [
{
"managers": ["terraform"],
"matchPackageNames": ["hashicorp/terraform"],
"enabled": false
}
],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["^terraform/.+.tf$", "^.woodpecker.ya?ml$"],
"matchStrings": [
"required_version = \"?([=><\\s]+)?(?<currentValue>[^\"]+)\"?",
"tofu_version: \"?(?<currentValue>.*?)\"?\\s"
],
"datasourceTemplate": "github-releases",
"depNameTemplate": "opentofu/opentofu",
"extractVersionTemplate": "^v?(?<version>.*)$"
}
]
}