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.

15 rivejä
265 B

  1. terraform {
  2. required_version = "~> 0.12.21"
  3. required_providers {
  4. azurerm = "~> 1.44"
  5. }
  6. }
  7. resource "azurerm_resource_group" "azrg" {
  8. for_each = var.rgs
  9. name = each.key
  10. location = each.value.location
  11. tags = each.value.tags
  12. }