forked from calebhansard/terraform-aws-eks-blueprints-addons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenovate.json
24 lines (24 loc) · 822 Bytes
/
renovate.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",
"extends": ["config:recommended"],
"enabledManagers": ["custom.regex"],
"customManagers": [
{
"customType": "regex",
"fileMatch": ["(^|/)main\\.tf$"],
"matchStrings": [
"chart *=.*\"(?<depName>.*?)\"\\).*\\s+chart_version *=.*\"(?<currentValue>.*?)\"\\).*\\s+repository *=.*\"(?<registryUrl>https.*?)\"\\)"
],
"datasourceTemplate": "helm"
},
{
"customType": "regex",
"fileMatch": ["(^|/)main\\.tf$"],
"matchStrings": [
"chart *=.*\"(?<depName>.*?)\"\\).*\\s+chart_version *=.*\"(?<currentValue>.*?)\"\\).*\\s+repository *=.*\"oci://(?<namespace>.*?)\"\\)"
],
"datasourceTemplate": "docker",
"packageNameTemplate": "{{namespace}}/{{depName}}"
}
]
}