User Story 124432 (#236)

* Replaced password with SSH key
This commit is contained in:
Tom Archer
2023-07-12 18:24:59 -07:00
committed by GitHub
parent 7c224d76a1
commit aecb7d60e3
6 changed files with 42 additions and 36 deletions

View File

@ -10,15 +10,8 @@ variable "resource_group_name_prefix" {
default = "rg"
}
variable "user_name" {
variable "username" {
type = string
description = "The username for the local account that will be created on the new vm."
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
}
}