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:
@@ -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 }
|
||||
]
|
||||
|
||||
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user