self-hosting/terraform/variables.tf
2019-04-04 02:25:38 +02:00

27 lines
357 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
}