Skip to content

Commit a9349f7

Browse files
committed
Fix bugs
1 parent b8e5e43 commit a9349f7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

code/infra/applicationinsights.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ module "application_insights" {
1010
application_insights_name = "${local.prefix}-appi001"
1111
application_insights_application_type = "other"
1212
application_insights_log_analytics_workspace_id = var.log_analytics_workspace_id
13-
diagnostics_configurations = {} # local.diagnostics_configurations # Disabled to avoid duplicate logs in LAW and App Insights
13+
diagnostics_configurations = [] # local.diagnostics_configurations # Disabled to avoid duplicate logs in LAW and App Insights
1414
}

code/infra/storage.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ module "storage_account" {
66
}
77

88
location = var.location
9-
resource_group_name = azurerm_resource_group.logging_rg.name
9+
resource_group_name = azurerm_resource_group.app_rg.name
1010
tags = var.tags
1111

1212
storage_account_name = replace("${local.prefix}-stg001", "-", "")

0 commit comments

Comments
 (0)