We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4abc954 commit f88f4f7Copy full SHA for f88f4f7
main.tf
@@ -32,6 +32,9 @@ resource "azurerm_monitor_diagnostic_setting" "this" {
32
category = metric.value
33
}
34
35
+ lifecycle {
36
+ ignore_changes = [log_analytics_destination_type] # TODO remove when issue is fixed: https://github.com/Azure/azure-rest-api-specs/issues/9281
37
+ }
38
39
40
locals {
variables.tf
@@ -178,9 +178,9 @@ variable "analytics_workspace_id" {
178
179
180
variable "analytics_destination_type" {
181
- type = string
+ type = string
182
description = "Possible values are AzureDiagnostics and Dedicated."
183
- default = "Dedicated"
+ default = "Dedicated"
184
185
186
variable "enable_diagnostic_setting" {
0 commit comments