Changed deprecated TF resource (azurerm_virtual_machine)

This commit is contained in:
Tom Archer
2023-05-10 05:04:19 -07:00
parent 3110ce9954
commit 3433d4d76d
5 changed files with 193 additions and 0 deletions

View File

@ -0,0 +1,11 @@
variable "resource_group_location" {
type = string
description = "Location for all resources."
default = "eastus"
}
variable "resource_group_name_prefix" {
type = string
description = "Prefix of the resource group name that's combined with a random ID so name is unique in your Azure subscription."
default = "rg"
}