Skip to content

Commit 5d6aacc

Browse files
chore(infra): disable Application Insights statsbeat by default
Hardcodes APPLICATIONINSIGHTS_STATSBEAT_DISABLED_ALL=true in the container-apps module's common environment variables to suppress statsbeat telemetry across all environments. Refs: DTOSS-12472
1 parent 17dbcca commit 5d6aacc

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

infrastructure/modules/container-apps/variables.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -222,8 +222,9 @@ locals {
222222
common_env = merge(
223223
local.env_vars_from_yaml,
224224
{
225-
SSL_MODE = "require"
226-
DJANGO_ENV = var.env_config
225+
SSL_MODE = "require"
226+
DJANGO_ENV = var.env_config
227+
APPLICATIONINSIGHTS_STATSBEAT_DISABLED_ALL = true
227228
}
228229
)
229230
container_db_env = {

0 commit comments

Comments
 (0)