-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathvariables.tf
77 lines (76 loc) · 2.17 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
variable "vpc_cidr" {
description = "VPC CIDR"
type = string
default = "10.0.0.0/16"
}
variable "region" {
description = "AWS region"
type = string
default = "us-west-2"
}
variable "kubernetes_version" {
description = "Kubernetes version"
type = string
default = "1.28"
}
variable "addons" {
description = "Kubernetes addons"
type = any
default = {
enable_aws_load_balancer_controller = true
enable_aws_ebs_csi_resources = true # generate gp2 and gp3 storage classes for ebs-csi
enable_metrics_server = true
}
}
# Addons Git
variable "gitops_addons_org" {
description = "Git repository org/user contains for addons"
type = string
default = "https://github.com/gitops-bridge-dev"
}
variable "gitops_addons_repo" {
description = "Git repository contains for addons"
type = string
default = "gitops-bridge-argocd-control-plane-template"
}
variable "gitops_addons_revision" {
description = "Git repository revision/branch/ref for addons"
type = string
default = "main"
}
variable "gitops_addons_basepath" {
description = "Git repository base path for addons"
type = string
default = ""
}
variable "gitops_addons_path" {
description = "Git repository path for addons"
type = string
default = "bootstrap/control-plane/addons"
}
# Workloads Git
variable "gitops_workload_org" {
description = "Git repository org/user contains for workload"
type = string
default = "https://github.com/gitops-bridge-dev"
}
variable "gitops_workload_repo" {
description = "Git repository contains for workload"
type = string
default = "gitops-bridge"
}
variable "gitops_workload_revision" {
description = "Git repository revision/branch/ref for workload"
type = string
default = "main"
}
variable "gitops_workload_basepath" {
description = "Git repository base path for workload"
type = string
default = "argocd/iac/terraform/examples/eks/"
}
variable "gitops_workload_path" {
description = "Git repository path for workload"
type = string
default = "getting-started/k8s"
}