k3s: debian vm and manifest

This commit is contained in:
2026-02-26 11:43:13 +01:00
parent 0cab06acd4
commit 8ad2c150a4
13 changed files with 267 additions and 27 deletions

View File

@@ -21,11 +21,22 @@ variable "drone_runner_id" {
default = 200
}
variable "k3s_id" {
description = "VMID for the k3s vm"
type = number
default = 4321
}
variable "drone_runner_ip" {
description = "Static IP in CIDR notation"
type = string
}
variable "k3s_ip" {
description = "Static IP in CIDR notation"
type = string
}
variable "gateway" {
description = "Network gateway IP"
type = string
@@ -42,3 +53,9 @@ variable "drone_runner_password" {
type = string
sensitive = true
}
variable "k3s_password" {
description = "Password for debian user on the K3s VM"
type = string
sensitive = true
}