User Story 171709 (#267)

* Updating sample for consistency
This commit is contained in:
Tom Archer
2023-10-23 20:38:10 -07:00
committed by GitHub
parent 03dbc8db99
commit 00b03117df
4 changed files with 8 additions and 8 deletions

View File

@ -2,9 +2,9 @@ resource "random_pet" "rg_name" {
prefix = var.resource_group_name_prefix
}
resource "azurerm_resource_group" "rg" {
name = "${random_pet.rg_name.id}"
resource "azurerm_resource_group" "rg" {
location = var.resource_group_location
name = random_pet.rg_name.id
}
resource "random_string" "azurerm_virtual_network_name" {