Skip to content

Commit

Permalink
fix .12 issue
Browse files Browse the repository at this point in the history
  • Loading branch information
katbyte committed Feb 28, 2019
1 parent 8a0e651 commit 25a4cbb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions azurerm/resource_arm_monitor_metric_alert_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -324,15 +324,15 @@ resource "azurerm_monitor_metric_alert" "test" {
threshold = 99
dimension {
"name" = "GeoType"
"operator" = "Include"
"values" = ["*"]
name = GeoType
operator = Include
values = ["*"]
}
dimension {
"name" = "ApiName"
"operator" = "Include"
"values" = ["*"]
name = "ApiName"
operator = "Include"
values = ["*"]
}
}
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/monitor_metric_alert.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ resource "azurerm_monitor_metric_alert" "test" {
threshold = 50
dimension {
"name" = "ApiName"
"operator" = "Include"
"values" = ["*"]
name = "ApiName"
operator = "Include"
values = ["*"]
}
}
Expand Down

0 comments on commit 25a4cbb

Please sign in to comment.