57 lines
930 B
Terraform
57 lines
930 B
Terraform
variable "naming_prefix" {
|
|
type = string
|
|
default = ""
|
|
}
|
|
|
|
variable "dot_env_file_path" {
|
|
type = string
|
|
default = ".env"
|
|
}
|
|
|
|
variable "image_pool_folder" {
|
|
description = "Local folder where base images are stored"
|
|
type = string
|
|
default = "./assets/images"
|
|
}
|
|
|
|
variable "image_filename" {
|
|
description = "Name of the base cloud image file"
|
|
type = string
|
|
default = "noble-server-cloudimg-amd64.img"
|
|
}
|
|
|
|
variable "node_ipv4" {
|
|
type = string
|
|
default = "10.6.6.10"
|
|
}
|
|
|
|
variable "node_ipv6" {
|
|
type = string
|
|
default = "2001:db8:ca2:2::10"
|
|
}
|
|
|
|
variable "network_ipv4_cidr" {
|
|
type = string
|
|
default = "10.6.6.0/24"
|
|
}
|
|
|
|
variable "network_ipv6_cidr" {
|
|
type = string
|
|
default = "2001:db8:ca2:2::/64"
|
|
}
|
|
|
|
variable "mtu" {
|
|
type = number
|
|
default = 1500
|
|
}
|
|
|
|
variable "node_cpu" {
|
|
type = number
|
|
default = 2
|
|
}
|
|
|
|
variable "node_mem" {
|
|
type = number
|
|
default = 1024
|
|
}
|