forked from terraform-module/terraform-kubernetes-velero
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
79 lines (66 loc) · 1.69 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
variable "cluster_name" {
description = "Cluster name."
type = string
}
variable "namespace_deploy" {
default = false
description = "Whether or not to deploy namespace"
type = bool
}
variable "app_deploy" {
default = true
description = "Whether or not to deploy app"
type = bool
}
variable "iam_deploy" {
default = true
description = "whther or not to deploy iam role"
type = bool
}
variable "name" {
default = "velero"
description = "Installation name"
type = string
}
variable "namespace_name" {
default = null
description = "Kubernetes namespace name"
type = string
}
variable "description" {
default = "velero-back-up-and-restore"
description = "Namespace description"
type = string
}
variable "openid_connect_provider_uri" {
description = "OpenID Connect Provider for EKS to enable IRSA."
type = string
}
variable "tags" {
default = {}
description = "A mapping of tags to assign to the object."
type = map(any)
}
variable "repository" {
default = "https://vmware-tanzu.github.io/helm-charts"
description = "VMware Tanzu repository for Helm repos."
type = string
}
variable "values" {
description = "List of values in raw yaml to pass to helm. Values will be merged."
type = list(string)
}
variable "app" {
description = "A Release is an instance of a chart running in a Kubernetes cluster."
type = map(any)
default = {}
}
variable "bucket" {
description = "Backup and Restore bucket."
type = string
}
variable "iam_role_name" {
description = "Name of the Velero IAM role"
type = string
default = ""
}