From 6bcd0e51f9a6defad6a0da6b3f6a04ce176386b9 Mon Sep 17 00:00:00 2001 From: mima Date: Fri, 20 Feb 2026 14:01:24 +0100 Subject: [PATCH 1/3] chore(config): standardize renovate.json and update repository topics --- .github/settings.json | 25 ++++++++++++++++++------- renovate.json | 12 +++++++++++- 2 files changed, 29 insertions(+), 8 deletions(-) diff --git a/.github/settings.json b/.github/settings.json index 449ede3..897de92 100644 --- a/.github/settings.json +++ b/.github/settings.json @@ -4,18 +4,29 @@ "visibility": "public", "default_branch": "main", "topics": [ - "terraform", "azure", - "virtual_network", - "subnet", - "public_ip", + "local-network-gateway", + "local_network_gateway", + "network-interface", + "network-interface-security-group-association", + "network-security-group", "network_interface", + "network_interface_security_group_association", "network_security_group", + "private-endpoint", + "private_endpoint", + "public-ip", + "public_ip", + "subnet", + "subnet-network-security-group-association", "subnet_network_security_group_association", - "network_interface_security_group_association", - "local_network_gateway", + "terraform", + "virtual-network", + "virtual-network-gateway", + "virtual-network-gateway-connection", + "virtual-network-peering", + "virtual_network", "virtual_network_gateway", - "private_endpoint", "virtual_network_gateway_connection", "virtual_network_peering" ] diff --git a/renovate.json b/renovate.json index 53669aa..d6deba2 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,15 @@ { "extends": [ - "github>telekom-mms/.github:renovate-preset.json5" + "config:base", + "github>telekom-mms/terraform-template" + ], + "dependencyDashboard": true, + "dependencyDashboardAutoclose": false, + "packageRules": [ + { + "matchUpdateTypes": ["patch"], + "automerge": true + } ] } + From bc2380c404bfe028ee365a23c252d6cc97fe79ac Mon Sep 17 00:00:00 2001 From: mima Date: Tue, 24 Feb 2026 10:05:59 +0100 Subject: [PATCH 2/3] fix line endings --- .gitattributes | 1 + 1 file changed, 1 insertion(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..fae8897 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* eol=lf From c6bc3ba7b02e72970286d6e73f692b6d27a460df Mon Sep 17 00:00:00 2001 From: mima Date: Thu, 26 Feb 2026 15:38:18 +0100 Subject: [PATCH 3/3] add linting settings --- examples/.tflint.hcl | 3 +++ 1 file changed, 3 insertions(+) diff --git a/examples/.tflint.hcl b/examples/.tflint.hcl index c409815..78bf102 100644 --- a/examples/.tflint.hcl +++ b/examples/.tflint.hcl @@ -1,3 +1,6 @@ +rule "terraform_required_providers" { + enabled = false +} rule "terraform_required_version" { enabled = false }