-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
68 lines (59 loc) · 1.47 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
variable "namespace" {
type = string
description = "Namespace to deploy"
default = "hmz-terraform"
}
variable "endpoints" {
type = object({
frontend = string
api = string
auth = string
})
description = "Namespace to deploy"
}
variable "registry_server" {
type = string
description = "Registry server used to pull Metaco SW"
default = "metaco.azurecr.io"
}
variable "registry_id" {
type = string
description = "Client ID used to pull Metaco SW"
}
variable "registry_password" {
type = string
description = "Client password used to pull Metaco SW"
}
variable "registry_email" {
type = string
description = "Client email used to pull Metaco SW"
default = "[email protected]"
}
variable "use_tls" {
type = bool
description = "Deploy harmonize with TLS"
default = true
}
variable "ingress_classname" {
type = string
description = "Ingress class name to use. Example: nginx if that is used"
default = ""
}
variable "notary_protocol" {
type = string
description = "Protocol used by the Notary"
default = "grpc"
validation {
condition = contains(["http", "grpc"], var.notary_protocol)
error_message = "Valid value is one of the following: http, grpc."
}
}
variable "harmonize_helm_templates" {
type = list(
object({
path = string
vars = map(string)
})
)
description = "host for installed Harmonize instance"
}