init
This commit is contained in:
55
terraform/modules/proxmox/vm/variables.tf
Normal file
55
terraform/modules/proxmox/vm/variables.tf
Normal file
@@ -0,0 +1,55 @@
|
||||
variable "name" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "target_node" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "template_id" {
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "cpu" {
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "cpu_type" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "memory" {
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "disk_size" {
|
||||
type = number
|
||||
}
|
||||
|
||||
variable "storage" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "bridge" {
|
||||
type = string
|
||||
}
|
||||
|
||||
variable "osd_storage" {
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "osd_disks" {
|
||||
type = list(number)
|
||||
default = []
|
||||
}
|
||||
|
||||
variable "user_data_file_id" {
|
||||
type = string
|
||||
default = null
|
||||
}
|
||||
|
||||
variable "mac_address" {
|
||||
description = "Static MAC for VM NIC (for DHCP reservation)."
|
||||
type = string
|
||||
}
|
||||
Reference in New Issue
Block a user