-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvariables.tf
62 lines (52 loc) · 1.27 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
variable "project_id" {
type = string
description = "project id"
}
variable "prefix" {
type = string
description = "prefix for all resources"
default = "weka"
}
variable "service_account_name" {
type = string
description = "service account name"
default = "deployment"
}
variable "state_bucket_name" {
type = string
default = ""
description = "Name of existing state bucket"
}
variable "tiering_obs_name" {
type = string
default = ""
description = "Name of existing OBS bucket"
}
variable "cluster_name" {
type = string
description = "Cluster prefix for all resources"
validation {
condition = length(var.cluster_name) <= 37
error_message = "The cluster name maximum allowed length is 37."
}
}
variable "weka_tar_bucket_name" {
type = string
default = ""
description = "Name of weka tar bucket"
}
variable "weka_tar_project_id" {
type = string
default = ""
description = "Project id of weka tar"
}
variable "network_project_id" {
type = string
default = ""
description = "Network project id"
}
variable "allow_artifactregistry_role" {
type = bool
default = false
description = "Role to allow artifact registry"
}