This repository has been archived by the owner on Nov 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
76 lines (62 loc) · 1.57 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
variable "chart_version" {
default = "1.4.1"
description = "harbor version to install"
type = string
}
variable "vpc_id" {
description = "VPC ID"
type = string
}
variable "database_instance_type" {
default = "db.t3.micro"
description = "RDS Database instance type"
type = string
}
variable "namespace" {
default = "harbor"
description = "Kubernetes namespace to deploy to"
type = string
}
variable "oidc_provider_issuer_url" {
description = "Issuer used in the OIDC provider associated with the EKS cluster to support IRSA."
type = string
}
variable "database_subnets" {
description = "AWS database subnets"
type = list(string)
}
variable "tags" {
description = "Tags to apply to taggable resources provisioned by this module."
type = map(string)
default = {}
}
variable "source_security_group" {
type = string
description = "Source security groups RDS should accept connections from"
}
variable "database_storage_size" {
description = "Disk space to allocation for RDS instance"
default = 5
type = number
}
variable "ingress_notary_hostname" {
default = ""
}
variable "ingress_core_hostname" {
default = ""
}
variable "ingress_enabled" {
type = bool
default = false
description = "Enable or disable creation of ingress resources"
}
variable "ingress_cluster_issuer" {
type = string
default = "letsencrypt"
description = "Cert-manager cluster issuer"
}
variable "ingress_class" {
type = string
default = "nginx"
description = "Ingress class"
}