fix 101-devtest-labs automation test

This commit is contained in:
hezijie 2023-02-23 09:23:44 +08:00
parent d8e9d4b7ae
commit 93f6488941

View File

@ -10,10 +10,12 @@ variable "resource_group_name_prefix" {
variable "lab_name" { variable "lab_name" {
description = "The name of the new lab instance to be created" description = "The name of the new lab instance to be created"
default = "ExampleLab"
} }
variable "vm_name" { variable "vm_name" {
description = "The name of the vm to be created." description = "The name of the vm to be created."
default = "example-vm"
} }
variable "vm_size" { variable "vm_size" {
@ -23,9 +25,11 @@ variable "vm_size" {
variable "user_name" { variable "user_name" {
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 = "exampleuser"
} }
variable "password" { variable "password" {
description = "The password for the local account that will be created on the new vm." description = "The password for the local account that will be created on the new vm."
sensitive = true sensitive = true
default = null
} }