From 4f100ab8e8abf9e894cad5ec59928643af7aef79 Mon Sep 17 00:00:00 2001 From: Neil Perry Date: Fri, 6 Mar 2026 15:51:56 +0000 Subject: [PATCH] update appinsights to use 100gb daily cap --- app-insights.tf | 1 + prod.tfvars | 3 ++- variables.tf | 5 +++++ 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/app-insights.tf b/app-insights.tf index 720e57cc..a5b35b31 100644 --- a/app-insights.tf +++ b/app-insights.tf @@ -4,6 +4,7 @@ module "application_insights" { env = var.env product = var.product + daily_data_cap_in_gb = var.daily_data_cap_in_gb resource_group_name = azurerm_resource_group.darts_resource_group.name diff --git a/prod.tfvars b/prod.tfvars index a5690a5d..c249a018 100644 --- a/prod.tfvars +++ b/prod.tfvars @@ -121,4 +121,5 @@ palo_networks = { install_azure_monitor = true -pgsql_storage_tier = "P80" +pgsql_storage_tier = "P80" +daily_data_cap_in_gb = 100 diff --git a/variables.tf b/variables.tf index 45367013..2bf83a61 100644 --- a/variables.tf +++ b/variables.tf @@ -375,3 +375,8 @@ variable "install_endpoint_protection" { description = "Install endpoint protection extension" default = false } + +variable "daily_data_cap_in_gb" { + description = "Specifies the Application Insights component daily data volume cap in GB" + default = 50 +}