infrastructure/terraform/resourcegroups.tf (20 lines of code) (raw):
resource "azurerm_resource_group" "orchestration" {
name = local.orchestration_rg
location = local.location
}
resource "azurerm_resource_group" "monitoring" {
name = local.monitoring_rg
location = local.location
}
resource "azurerm_resource_group" "storage" {
name = local.storage_rg
location = local.location
}
resource "azurerm_resource_group" "ai" {
name = local.ai_rg
location = local.location
}
resource "azurerm_resource_group" "shortclip" {
name = local.shortclip_rg
location = local.location
}