This commit is contained in:
root 2024-10-31 02:21:36 +03:00
parent a8e8921854
commit 0d96b3286a
2 changed files with 18 additions and 2 deletions

2
.gitignore vendored
View File

@ -14,8 +14,6 @@ crash.*.log
# password, private keys, and other secrets. These should not be part of version
# control as they are data points which are potentially sensitive and subject
# to change depending on the environment.
*.tfvars
*.tfvars.json
# Ignore override files as they are usually used to override resources locally and so
# are not checked in

View File

@ -0,0 +1,18 @@
pm_host = "192.168.0.100"
pm_password = "GBA404ktuy74i"
pm_node_name = "pve"
pm_tls_insecure = true
pvt_key = "/root/homelab-k3s/Terraform/key/id_rsa"
num_k3s_masters = 1
num_k3s_masters_mem = 4096
num_k3s_nodes = 2
num_k3s_nodes_mem = 4096
tamplate_vm_name = "ubuntu-2404-template"
master_ips = [
"192.168.0.109"
]
worker_ips = [
"192.168.0.110",
"192.168.0.111",
"192.168.0.112",
]