Tom Archer aecb7d60e3
User Story 124432 (#236)
* Replaced password with SSH key
2023-07-13 09:24:59 +08:00

17 lines
516 B
HCL

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"
}
variable "username" {
type = string
description = "The username for the local account that will be created on the new VM."
default = "azureadmin"
}