mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
31 lines
407 B
HCL
31 lines
407 B
HCL
variable "region" {
|
|
default = "par1"
|
|
}
|
|
|
|
variable "architecture" {
|
|
default = "x86_64"
|
|
}
|
|
|
|
variable "image" {
|
|
default = "Ubuntu Bionic"
|
|
}
|
|
|
|
variable "master_instance_type" {
|
|
default = "DEV1-S"
|
|
}
|
|
|
|
variable "master_instance_count" {
|
|
default = 1
|
|
}
|
|
|
|
variable "node_instance_type" {
|
|
default = "DEV1-S"
|
|
}
|
|
|
|
variable "node_instance_count" {
|
|
default = 2
|
|
}
|
|
|
|
variable "lb_ip" {
|
|
default = "51.159.26.139"
|
|
}
|