blob: fb998c82a276401f2fa2cc0edfa23f31e6c62c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
variable "node_name" {
type = string
}
variable "lxc_id" {
type = number
}
variable "hostname" {
type = string
default = "lgtm-stack"
}
variable "ip_address" {
type = string
}
variable "gateway_ip" {
type = string
default = "192.168.0.1"
}
variable "ssh_keys" {
type = list(string)
default = ["ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIHB4jD3PVsg1edlMwBW6Hb/NYLnzEI8dyJQRnQQap45q enrico@cachyos"]
}
|