Skip to content

Commit

Permalink
adding defaults to matchbox vars
Browse files Browse the repository at this point in the history
  • Loading branch information
sekharpanja committed Feb 18, 2025
1 parent 5f4aae4 commit 60bec85
Showing 1 changed file with 28 additions and 7 deletions.
35 changes: 28 additions & 7 deletions infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -282,13 +282,34 @@ variable "matchbox_dev_mode_on" {
type = bool
default = false
}
variable "vpc_matchbox_cidr" {}
variable "matchbox_instances" {}
variable "matchbox_instances_long" {}
variable "matchbox_db_instance_class" {}
variable "vpc_matchbox_subnets_num_bits" {}
variable "matchbox_s3_cache" {}
variable "matchbox_s3_dev_artefacts" {}
variable "vpc_matchbox_cidr" {
type = string
default = ""
}
variable "matchbox_instances" {
type = list(string)
default = []
}
variable "matchbox_instances_long" {
type = list(string)
default = []
}
variable "matchbox_db_instance_class" {
type = string
default = ""
}
variable "vpc_matchbox_subnets_num_bits" {
type = string
default = ""
}
variable "matchbox_s3_cache" {
type = string
default = ""
}
variable "matchbox_s3_dev_artefacts" {
type = string
default = ""
}

locals {
admin_container_name = "jupyterhub-admin"
Expand Down

0 comments on commit 60bec85

Please sign in to comment.