25개 이상의 토픽을 선택하실 수 없습니다.
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
- }
|