diff --git a/.gitignore b/.gitignore index a9e8a0c5..8854473e 100644 --- a/.gitignore +++ b/.gitignore @@ -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 diff --git a/Terraform/variables.tfvars b/Terraform/variables.tfvars new file mode 100644 index 00000000..bda9c4d8 --- /dev/null +++ b/Terraform/variables.tfvars @@ -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", +]