diff --git a/.gitignore b/.gitignore index 2f1f4f8..b4544f8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,3 @@ -*.tfvars *.tfstate *.tfstate.backup *.lock.hcl diff --git a/infrastructure/vms.auto.tfvars b/infrastructure/vms.auto.tfvars new file mode 100644 index 0000000..a64c6ee --- /dev/null +++ b/infrastructure/vms.auto.tfvars @@ -0,0 +1,20 @@ +vms = { + "cp1" = { + node_type = "control-plane" + server_type = "cpx11", + backups = true, + private_ip = "172.23.2.10" + }, + "worker1" = { + node_type = "worker" + server_type = "cpx21" + backups = false, + private_ip = "172.23.2.20" + }, + "worker2" = { + node_type = "worker" + server_type = "cpx21" + backups = false, + private_ip = "172.23.2.21" + } +}