You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- terraform {
- required_version = "~> 0.12.21"
- required_providers {
- azurerm = "~> 1.44"
- }
- }
-
- resource "azurerm_resource_group" "azrg" {
- for_each = var.rgs
-
- name = each.key
- location = each.value.location
- tags = each.value.tags
- }
|