feat(elk): add Renovate configuration for Elasticsearch image versioning

This commit is contained in:
Ben Martin 2024-12-19 16:04:12 +00:00
parent 8740681660
commit 8e69bf0e43
Signed by: ben
GPG key ID: 859A655FCD290E4A
2 changed files with 11 additions and 0 deletions

View file

@ -3,6 +3,7 @@ resource "nomad_job" "elk" {
hcl2 { hcl2 {
vars = { vars = {
# renovate: image=docker.elastic.co/elasticsearch/elasticsearch
"elastic_version" = "8.17.0", "elastic_version" = "8.17.0",
} }
} }

View file

@ -13,6 +13,16 @@
"matchStrings": [ "matchStrings": [
"\\s*image\\s*=\\s*\\\"(?<depName>.*?):(?<currentValue>.*?)\\\"" "\\s*image\\s*=\\s*\\\"(?<depName>.*?):(?<currentValue>.*?)\\\""
] ]
},
{
"customType": "regex",
"datasourceTemplate": "docker",
"fileMatch": [
"\\.tf$"
],
"matchStrings": [
"#\\s?renovate:\\s?image=(?<depName>.*?)\\s?\\\"\\w+\\\"\\s?=\\s?\\\"(?<currentValue>[\\w+\\.\\-]*)\""
]
} }
] ]
} }