update aks enterprise
This commit is contained in:
27
quickstart/301-aks-enterprise/monitoring.tf
Normal file
27
quickstart/301-aks-enterprise/monitoring.tf
Normal file
@ -0,0 +1,27 @@
|
||||
resource "azurerm_application_insights" "default" {
|
||||
name = "${var.name}-${var.environment}-ai"
|
||||
location = "${azurerm_resource_group.default.location}"
|
||||
resource_group_name = "${azurerm_resource_group.default.name}"
|
||||
application_type = "Web"
|
||||
}
|
||||
|
||||
resource "azurerm_log_analytics_workspace" "default" {
|
||||
name = "${var.name}-${var.environment}-law"
|
||||
location = "${azurerm_resource_group.default.location}"
|
||||
resource_group_name = "${azurerm_resource_group.default.name}"
|
||||
sku = "PerGB2018"
|
||||
retention_in_days = 30
|
||||
}
|
||||
|
||||
resource "azurerm_log_analytics_solution" "default" {
|
||||
solution_name = "ContainerInsights"
|
||||
location = "${azurerm_log_analytics_workspace.default.location}"
|
||||
resource_group_name = "${azurerm_resource_group.default.name}"
|
||||
workspace_resource_id = "${azurerm_log_analytics_workspace.default.id}"
|
||||
workspace_name = "${azurerm_log_analytics_workspace.default.name}"
|
||||
|
||||
plan {
|
||||
publisher = "Microsoft"
|
||||
product = "OMSGallery/ContainerInsights"
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user