Skip to content

Commit

Permalink
feat: add on switches for non-essential services (#3023)
Browse files Browse the repository at this point in the history
Adds a boolean var to turn off specific services

- superset
- mlflow
- flower
  • Loading branch information
niross authored Feb 13, 2024
1 parent c20edea commit 3a0c421
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions infra/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,10 @@ variable gitlab_sso_id {}
variable gitlab_sso_secret {}
variable gitlab_sso_domain {}

variable superset_on {
type = bool
default = true
}
variable superset_admin_users {}
variable superset_db_instance_class {}
variable superset_internal_domain {}
Expand Down Expand Up @@ -162,10 +166,18 @@ variable quicksight_author_iam_arn {}

variable shared_keypair_public_key {}

variable flower_on {
type = bool
default = true
}
variable flower_username {}
variable flower_password {}


variable mlflow_on {
type = bool
default = true
}
variable mlflow_artifacts_bucket {}
variable mlflow_instances {}
variable mlflow_instances_long {}
Expand Down

0 comments on commit 3a0c421

Please sign in to comment.