-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
57 lines (49 loc) · 1.02 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
variable "cluster_name" {
type = string
description = "Cluster name"
default = ""
}
variable "domains" {
type = list(string)
description = "List of domains"
default = []
}
variable "email" {
type = string
description = "Email address to be used"
default = ""
}
variable "environment" {
type = string
description = "Environment name"
default = ""
}
variable "module_depends_on" {
type = list(any)
description = "Module depends on the list provided"
default = []
}
variable "namespace" {
type = string
description = "Namespace"
default = "cert-manager"
}
variable "project" {
type = string
description = "Project name"
default = ""
}
variable "zone_id" {
type = string
description = "Zone ID to be used"
}
variable "argocd" {
type = map(string)
description = "A set of variables for enabling ArgoCD"
default = {
namespace = ""
path = ""
repository = ""
branch = ""
}
}