Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions app-insights.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
3 changes: 2 additions & 1 deletion prod.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -121,4 +121,5 @@ palo_networks = {

install_azure_monitor = true

pgsql_storage_tier = "P80"
pgsql_storage_tier = "P80"
daily_data_cap_in_gb = 100
5 changes: 5 additions & 0 deletions variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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
}