Merged in fix/redis-api-model-validation (pull request #2000)

* fix: model response validation for 204
* log: add more logging when deleting keys
* add version to health endpoint


Approved-by: Anton Gunnarsson
This commit is contained in:
Joakim Jäderberg
2025-05-07 13:45:35 +00:00
parent bf7992da5b
commit 3ea26259df
5 changed files with 62 additions and 23 deletions

View File

@@ -2,6 +2,7 @@ import { Environment, EnvironmentVar } from '../types.bicep'
targetScope = 'subscription'
param version string
param environment Environment
param containerImageTag string
param redisConnection string
@@ -45,6 +46,7 @@ module containerApp 'containerApp.bicep' = {
{ name: 'SENTRY_DSN', value: sentryDSN }
{ name: 'SENTRY_ENABLED', value: sentryEnabled }
{ name: 'SENTRY_TRACE_SAMPLE_RATE', value: sentryTraceSampleRate }
{ name: 'VERSION', value: version }
{ name: 'timestamp', value: timestamp }
]

View File

@@ -4,6 +4,7 @@ targetScope = 'subscription'
param environment Environment
param containerImageTag string = 'latest'
param version string
param primaryApiKey string
param secondaryApiKey string
@@ -51,5 +52,6 @@ module containerApp 'app/main.bicep' = {
sentryDSN: sentryDSN
sentryEnabled: sentryEnabled
sentryTraceSampleRate: sentryTraceSampleRate
version: version
}
}