-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
94 lines (78 loc) · 2.19 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
variable "allowed_inbound_cidrs" {
type = list(string)
nullable = false
description = "Which IPv4 addresses/ranges to allow access. No default -- this must be explicitly provided."
}
variable "create_redis" {
default = false
description = "Boolean indicating whether to provision an redis instance (true) or not (false)."
nullable = false
type = bool
}
variable "project_id" {
type = string
description = "Project ID"
}
variable "region" {
type = string
description = "Google region"
}
variable "zone" {
type = string
description = "Google zone"
}
variable "namespace" {
type = string
description = "Namespace prefix used for resources"
}
variable "domain_name" {
type = string
description = "Domain name for accessing the Weights & Biases UI."
}
variable "subdomain" {
type = string
description = "Subdomain for access the Weights & Biases UI."
}
variable "gke_machine_type" {
description = "Specifies the machine type to be allocated for the database"
type = string
default = "n1-standard-4"
}
variable "license" {
type = string
}
variable "wandb_version" {
description = "The version of Weights & Biases local to deploy."
type = string
default = "latest"
}
variable "wandb_image" {
description = "Docker repository of to pull the wandb image from."
type = string
default = "wandb/local"
}
variable "database_sort_buffer_size" {
description = "Specifies the sort_buffer_size value to set for the database"
type = number
default = 262144
}
variable "force_ssl" {
description = "Enforce SSL through the usage of the Cloud SQL Proxy (cloudsql://) in the DB connection string"
type = bool
default = false
}
variable "database_machine_type" {
description = "Specifies the machine type to be allocated for the database"
type = string
default = "db-n1-standard-2"
}
variable "disable_code_saving" {
type = bool
description = "Boolean indicating if code saving is disabled"
default = false
}
variable "size" {
description = "Deployment size for the instance"
type = string
default = null
}