-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
72 lines (61 loc) · 1.61 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
variable "helm_config" {
description = "Helm provider config for the ondat addon"
type = any
default = {}
}
variable "manage_via_gitops" {
description = "Determines if the add-on should be managed via GitOps"
type = bool
default = false
}
variable "addon_context" {
description = "Input configuration for the addon"
type = any
}
variable "irsa_permissions_boundary" {
description = "IAM Policy ARN for IRSA IAM role permissions boundary"
type = string
default = ""
}
variable "irsa_policies" {
description = "IAM policy ARNs for Ondat IRSA"
type = list(string)
default = []
}
variable "create_cluster" {
description = "Determines if the StorageOSCluster and secrets should be created"
type = bool
default = true
}
variable "etcd_endpoints" {
description = "A list of etcd endpoints for Ondat"
type = list(string)
default = []
}
variable "etcd_ca" {
description = "The PEM encoded CA for Ondat's etcd"
type = string
default = null
}
variable "etcd_cert" {
description = "The PEM encoded client certificate for Ondat's etcd"
type = string
default = null
}
variable "etcd_key" {
description = "The PEM encoded client key for Ondat's etcd"
type = string
default = null
sensitive = true
}
variable "admin_username" {
description = "Username for the Ondat admin user"
type = string
default = "storageos"
}
variable "admin_password" {
description = "Password for the Ondat admin user"
type = string
default = "storageos"
sensitive = true
}