Добавить terraform/resize-vm-disk/variables.tf

This commit is contained in:
2026-05-06 20:16:07 +03:00
parent ce918d7c02
commit 8b08e3a7fb
+30
View File
@@ -0,0 +1,30 @@
variable "vsphere_user" {
type = string
sensitive = true
}
variable "vsphere_password" {
type = string
sensitive = true
}
variable "vsphere_server" {
type = string
}
variable "vsphere_datacenter" {
type = string
}
variable "vm_name" {
type = string
}
variable "increase_gb" {
type = number
}
variable "disk_label" {
type = string
default = "disk0"
}