adding AML 301

This commit is contained in:
ryhud
2021-10-06 14:10:15 -04:00
parent 2f2199f204
commit 32a9580ffb
11 changed files with 952 additions and 0 deletions

View File

@ -0,0 +1,7 @@
resource "azurerm_log_analytics_workspace" "default" {
name = "log-${var.name}-${var.environment}"
location = azurerm_resource_group.default.location
resource_group_name = azurerm_resource_group.hub_rg.name
sku = "PerGB2018"
retention_in_days = 30
}