initial put

This commit is contained in:
Tom Archer
2024-06-13 09:32:07 -07:00
parent 7ce10b04ff
commit 50e642f10d
6 changed files with 184 additions and 0 deletions

View File

@ -0,0 +1,17 @@
variable "resource_group_location" {
type = string
description = "Location of the resource group."
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"
}
variable "username" {
type = string
description = "The username for the local account that will be created on the new VM."
default = "azureadmin"
}