forked from aws-samples/eks-blueprints-actions-workflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
105 lines (85 loc) · 2.24 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
variable "k8s_version" {
type = string
description = "Kubernetes version"
}
variable "vpc_cni_version" {
type = string
description = "VPC CNI add-on version"
}
variable "kube_proxy_version" {
type = string
description = "Kube Proxy add-on version"
}
variable "cluster_proportional_autoscaler_version" {
type = string
description = "Cluster Proportional Autoscaler version"
}
variable "karpenter_version" {
type = string
description = "Karpenter version"
}
variable "argocd_version" {
type = string
description = "Argo CD version"
}
variable "aws_load_balancer_controller_version" {
type = string
description = "AWS Load Balancer Controller version"
}
variable "external_dns_version" {
type = string
description = "External DNS version"
}
variable "eks_admins_iam_role" {
type = string
description = "The EKS Admins IAM Role Name"
}
variable "vpc_name" {
type = string
description = "The name of the VPC where to deploy the EKS Cluster Worker Nodes"
}
variable "team_name" {
type = string
description = "The name of the team that will own EKS Cluster"
}
variable "environment" {
type = string
description = "The environment of EKS Cluster"
}
variable "cluster_id" {
type = string
description = "The EKS Cluster ID"
}
variable "region" {
type = string
description = "The AWS region where to deploy the EKS Cluster"
}
variable "eks_cluster_domain" {
type = string
description = "Route53 domain for the cluster."
}
variable "acm_certificate_domain" {
type = string
description = "Route53 certificate domain"
}
variable "workloads_org" {
type = string
description = "The Workloads GitHub Organization"
}
variable "workloads_pat" {
type = string
description = "The Workloads GitHub Personnal Access Token"
}
variable "workloads_path" {
type = string
description = "The Workloads Helm Chart Path"
}
variable "workloads_repo_url" {
type = string
description = "The Workloads GitHub Repository URL"
}
variable "workloads_target_revision" {
type = string
description = "The Workloads Git Repository Target Revision (Tag or Branch)"
default = "main"
}