2023-05-19 08:10:54 -07:00

25 lines
697 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 "user_name" {
type = string
description = "The username for the local account that will be created on the new vm."
default = "azureadmin"
}
variable "password" {
type = string
description = "The password for the local account that will be created on the new vm."
sensitive = true
default = null
}