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

89 lines
1.1 KiB
Terraform
Raw Normal View History

2023-04-05 15:39:38 +00:00
variable "name" {
type = string
}
2023-04-12 13:17:08 +00:00
variable "domain_name" {
2023-04-19 09:27:31 +00:00
type = string
2023-04-12 13:17:08 +00:00
default = null
}
2023-04-05 15:39:38 +00:00
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
}
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"
}
2023-04-09 11:36:40 +00:00
variable "mac" {
type = string
default = null
}
2023-04-17 07:32:30 +00:00
variable "fixed_dns" {
2023-04-19 09:27:31 +00:00
type = string
2023-04-17 07:32:30 +00:00
default = ""
}
2023-04-19 09:27:31 +00:00
variable "disk_size" {
type = number
default = 1024 * 1024 * 1024 * 15
}
2023-04-25 15:51:45 +00:00
variable "ca_key" {
type = string
default = "dmz_host"
}