Skip to content

Commit

Permalink
Example Update: Change Product and Solution Name Fields (#4280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lachlan-White authored and katbyte committed Sep 10, 2019
1 parent 6a2fb60 commit 7da34ca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions examples/kubernetes/monitoring/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ resource "azurerm_log_analytics_workspace" "example" {
}

resource "azurerm_log_analytics_solution" "example" {
solution_name = "ContainerInsights"
solution_name = "Containers"
location = "${azurerm_resource_group.example.location}"
resource_group_name = "${azurerm_resource_group.example.name}"
workspace_resource_id = "${azurerm_log_analytics_workspace.example.id}"
workspace_name = "${azurerm_log_analytics_workspace.example.name}"

plan {
publisher = "Microsoft"
product = "OMSGallery/ContainerInsights"
product = "OMSGallery/Containers"
}
}

Expand Down

0 comments on commit 7da34ca

Please sign in to comment.