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

59 lines
757 B
Terraform
Raw Normal View History

2023-04-05 15:39:38 +00:00
variable "name" {
type = string
}
variable "admin_authorized_keys" {
2023-04-05 17:15:03 +00:00
type = list(string)
default = null
2023-04-05 15:39:38 +00:00
}
variable "insecure_password" {
2023-04-05 17:15:03 +00:00
type = bool
2023-04-07 14:05:51 +00:00
default = false
2023-04-05 15:39:38 +00:00
}
variable "use_host_cert" {
2023-04-05 17:15:03 +00:00
type = bool
2023-04-07 14:05:51 +00:00
default = true
2023-04-05 15:39:38 +00:00
}
variable "disk_pool" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
variable "disk_base" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
variable "disk_base_pool" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
variable "cloudinit_pool" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
variable "bridge_name" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
variable "ca_host" {
2023-04-05 17:15:03 +00:00
type = string
default = null
2023-04-05 15:39:38 +00:00
}
2023-04-07 12:34:25 +00:00
variable "memory" {
type = number
2023-04-07 14:05:51 +00:00
default = 1024
}
variable "data_disks" {
type = list(string)
default = []
2023-04-07 12:34:25 +00:00
}