chore(infra): add missing tfvars
This commit is contained in:
parent
4af2d41408
commit
bb36acbed0
2 changed files with 20 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,4 +1,3 @@
|
||||||
*.tfvars
|
|
||||||
*.tfstate
|
*.tfstate
|
||||||
*.tfstate.backup
|
*.tfstate.backup
|
||||||
*.lock.hcl
|
*.lock.hcl
|
||||||
|
|
20
infrastructure/vms.auto.tfvars
Normal file
20
infrastructure/vms.auto.tfvars
Normal file
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue