Pim Kunis
111bf68a0a
move docker swarm ansible to this repo move thecloud ansible to this repo support data disks in terraform
29 lines
363 B
HCL
29 lines
363 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
|
|
}
|
|
|
|
variable "data_disk" {
|
|
type = string
|
|
default = null
|
|
}
|