-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
44 lines (36 loc) · 1.12 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 2023 Quansight Labs.
# Use of this source code is governed by a 3-Clause BSD
# license that can be found in the LICENSE file.
variable "enabled" {
description = "Switch to create/remove all resources. Convenient for quickly disabling the cluster"
default = false
type = bool
}
variable "region" {
description = "Region to deploy the resources in"
default = "us-central1"
}
variable "zone" {
description = "Zone to deploy the resources in"
default = "us-central1-a"
}
variable "instance-type" {
description = "GCP instance to deploy TLJH"
default = "e2-standard-2"
}
variable "subdomain" {
description = "Subdomain within Domain/Zone to deploy tljh"
default = "jupyter-a11y"
}
variable "domain" {
description = "Domain/Zone which you have access to via cloudflare"
default = "quansight.dev"
}
variable "letsencrypt-email" {
description = "Email address for let's encrypt to notify renewal of certificate"
default = "costrouchov@quansight.com"
}
variable "admin-username" {
description = "Initial admin username for tljh deployment"
default = "trallard"
}