self-hosting/terraform/variables.tf

28 lines
357 B
Terraform
Raw Normal View History

variable "region" {
default = "par1"
}
variable "architecture" {
default = "x86_64"
}
variable "image" {
2019-04-04 02:25:38 +02:00
default = "Ubuntu Bionic"
}
variable "master_instance_type" {
2019-04-04 02:25:38 +02:00
default = "DEV1-S"
}
variable "master_instance_count" {
2019-04-04 02:25:38 +02:00
default = 1
}
2019-04-04 02:25:38 +02:00
variable "node_instance_type" {
default = "DEV1-S"
}
2019-04-04 02:25:38 +02:00
variable "node_instance_count" {
default = 2
}