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

69 lines
886 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
}
2023-04-07 15:44:06 +00:00
variable "data_disk" {
type = string
default = null
2023-04-07 12:34:25 +00:00
}
2023-04-07 16:06:53 +00:00
variable "fixed_address" {
2023-04-09 09:35:22 +00:00
type = string
2023-04-08 16:17:34 +00:00
default = ""
2023-04-07 16:06:53 +00:00
}
2023-04-09 09:35:22 +00:00
variable "ansible_command" {
type = string
default = "true"
}