This repository has been archived on 2023-05-08. You can view files and clone it, but cannot push or open issues or pull requests.
tf-debian-vm/variables.tf

72 lines
884 B
Terraform
Raw Normal View History

2023-04-05 14:48:38 +00:00
variable "name" {
type = string
}
variable "disk_size" {
2023-04-05 15:12:16 +00:00
type = number
2023-04-05 14:48:38 +00:00
default = 1024 * 1024 * 1024 * 15
}
variable "admin_authorized_keys" {
type = list(string)
}
variable "memory" {
2023-04-05 15:12:16 +00:00
type = number
2023-04-05 14:48:38 +00:00
default = 1024
}
variable "mac" {
2023-04-05 15:12:16 +00:00
type = string
2023-04-05 14:48:38 +00:00
default = null
}
variable "insecure_password" {
2023-04-05 15:12:16 +00:00
type = bool
2023-04-05 14:48:38 +00:00
default = false
}
variable "use_host_cert" {
2023-04-05 15:12:16 +00:00
type = bool
2023-04-05 15:40:21 +00:00
default = false
2023-04-05 14:48:38 +00:00
}
2023-04-05 15:12:16 +00:00
variable "disk_pool" {
2023-04-05 15:40:21 +00:00
type = string
2023-04-05 15:12:16 +00:00
}
variable "disk_base" {
2023-04-05 15:40:21 +00:00
type = string
2023-04-05 15:12:16 +00:00
}
variable "disk_base_pool" {
2023-04-05 15:40:21 +00:00
type = string
2023-04-05 15:12:16 +00:00
}
variable "cloudinit_pool" {
2023-04-05 15:40:21 +00:00
type = string
2023-04-05 15:12:16 +00:00
}
variable "bridge_name" {
type = string
}
variable "ca_host" {
type = string
}
2023-04-07 14:02:02 +00:00
variable "data_disk" {
2023-04-07 16:05:37 +00:00
type = string
default = null
}
variable "fixed_address" {
type = string
2023-04-08 16:44:46 +00:00
default = ""
2023-04-07 14:02:02 +00:00
}
2023-04-09 08:46:17 +00:00
variable "ansible_command" {
type = string
2023-04-09 09:34:30 +00:00
default = "true"
2023-04-09 08:46:17 +00:00
}