Skip to content

Commit

Permalink
fix: disable metrics (#85)
Browse files Browse the repository at this point in the history
  • Loading branch information
hknutsen authored Apr 20, 2023
1 parent 21ddc88 commit 4400718
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -98,25 +98,31 @@ resource "azurerm_monitor_diagnostic_setting" "this" {

metric {
category = "Basic"
enabled = false

retention_policy {
enabled = false
days = 0
}
}

metric {
category = "InstanceAndAppAdvanced"

enabled = false

retention_policy {
enabled = false
days = 0
}
}

metric {
category = "WorkloadManagement"
enabled = false

retention_policy {
enabled = false
days = 0
}
}

Expand Down

0 comments on commit 4400718

Please sign in to comment.