From f128235c7ae23c4b6d10438562e1c1a70033f5c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Harjam=C3=A4ki?= Date: Mon, 6 Jul 2026 20:06:42 +0300 Subject: [PATCH 1/2] fix: enable use-recent-api-versions bicep lint rule - Change use-recent-api-versions from off to warning in bicepconfig.json - Warning (not error) avoids a first-time hard-fail surface since there is no CI gate yet to enforce it --- bicepconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bicepconfig.json b/bicepconfig.json index 7b7be46..95386d2 100644 --- a/bicepconfig.json +++ b/bicepconfig.json @@ -33,7 +33,7 @@ "simplify-interpolation": { "level": "warning" }, "simplify-json-null": { "level": "warning" }, "use-parent-property": { "level": "warning" }, - "use-recent-api-versions": { "level": "off" }, + "use-recent-api-versions": { "level": "warning" }, "use-resource-id-functions": { "level": "warning" }, "use-resource-symbol-reference": { "level": "warning" }, "use-safe-access": { "level": "warning" }, From 4aa7d5cd5578a78b15abd46ba08d187214f36026 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kim=20Harjam=C3=A4ki?= Date: Mon, 6 Jul 2026 20:10:10 +0300 Subject: [PATCH 2/2] chore: ignore az bicep build output (infra/main.json) - az bicep build --file infra/main.bicep emits a compiled ARM template that was previously untracked; ignore it as generated build output --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b778c0f..58891ad 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,5 @@ *.local.bicepparam *.whatif.json *.whatif.txt +infra/main.json