teaching-webterm/terraform/variables.tf

32 lines
495 B
Terraform
Raw Permalink Normal View History

2022-05-26 15:31:39 +00:00
2022-06-16 15:53:38 +00:00
variable "mongo_gateways_enable" {
default = false
type = bool
}
variable "mongo_servers_enable" {
default = false
type = bool
}
2022-05-26 15:31:39 +00:00
variable "mongo_groups_count" {
2022-06-16 15:53:38 +00:00
default = "1"
description = "How many replicas per mongo"
2022-05-26 15:31:39 +00:00
}
variable "mongo_replicas_count" {
2022-06-16 15:53:38 +00:00
default = "2"
description = "How many replicas per mongo group"
2022-05-26 15:31:39 +00:00
}
variable "ssh_private_key" {}
variable "ssh_public_key" {}
variable "gandi_key" {}
variable "domain_name" {}
2022-06-16 15:53:38 +00:00
variable "subdomain_suffix" {
}