2023-02-17 12:59:18 +08:00

17 lines
451 B
HCL

variable "location" {
type = string
default = "eastus"
description = "Location where resources will be created"
}
variable "msi_id" {
type = string
default = null
description = "If you're executing the test with user assigned identity, please pass the identity principal id to this variable."
}
variable "prefix" {
type = string
default = "vm-disk-e-e"
description = "Prefix of the resource name"
}