42 lines
936 B
HCL
42 lines
936 B
HCL
variable "project_name" {
|
|
description = "Name of the Incus project for sandbox environment"
|
|
type = string
|
|
default = "ouranos"
|
|
}
|
|
|
|
variable "profile_name" {
|
|
description = "Name of the Incus profile for sandbox hosts"
|
|
type = string
|
|
default = "sandbox"
|
|
}
|
|
|
|
variable "network_name" {
|
|
description = "Name of the network bridge"
|
|
type = string
|
|
default = "incusbr0"
|
|
}
|
|
|
|
variable "storage_pool" {
|
|
description = "Name of the storage pool"
|
|
type = string
|
|
default = "default"
|
|
}
|
|
|
|
variable "keeper_user" {
|
|
description = "Keeper user name for container management (keeper_user taxonomy)"
|
|
type = string
|
|
default = "ponos"
|
|
}
|
|
|
|
variable "keeper_uid" {
|
|
description = "Keeper user UID"
|
|
type = number
|
|
default = 519
|
|
}
|
|
|
|
variable "ssh_key_path" {
|
|
description = "Path to SSH authorized keys file"
|
|
type = string
|
|
default = "~/.ssh/authorized_keys"
|
|
}
|