self-hosting/terraform/variables.tf

36 lines
475 B
Terraform
Raw Normal View History

variable "region" {
default = "par1"
}
variable "architecture" {
default = "x86_64"
}
variable "image" {
default = "Ubuntu Bionic"
}
variable "master_instance_type" {
default = "START1-S"
}
variable "master_instance_count" {
default = 3
}
variable "proxy_instance_type" {
default = "START1-S"
}
variable "worker_instance_type" {
default = "START1-S"
}
variable "worker_volume_size" {
default = 100
}
variable "worker_instance_count" {
default = 3
}