Pim Kunis
721623c8fc
enable static IP for terraformed VMs restructure legacy code move hermes code to this repo don't use data disk for hermes leases
24 lines
304 B
HCL
24 lines
304 B
HCL
variable "name" {
|
|
type = string
|
|
}
|
|
|
|
variable "ram" {
|
|
type = number
|
|
description = "In MiB"
|
|
}
|
|
|
|
variable "storage" {
|
|
type = number
|
|
description = "In GiB"
|
|
}
|
|
|
|
variable "mac" {
|
|
type = string
|
|
description = "MAC address"
|
|
default = null
|
|
}
|
|
|
|
variable "static_ip" {
|
|
type = string
|
|
default = null
|
|
}
|