self-hosting/terraform/variables.tf
2019-08-15 17:51:57 +02:00

28 lines
358 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
}