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

49 lines
630 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
default = null
2023-04-05 15:39:38 +00:00
}
variable "use_host_cert" {
2023-04-05 17:15:03 +00:00
type = bool
default = null
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
}