generated from terraform-module/terraform-module-blueprint
-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathvariables.tf
38 lines (32 loc) · 1.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
variable "cluster_name" {
type = string
description = "Cluster name"
}
variable "subnet_ids" {
description = "Identifiers of private EC2 Subnets to associate with the EKS Fargate Profile. These subnets must have the following resource tag: kubernetes.io/cluster/CLUSTER_NAME (where CLUSTER_NAME is replaced with the name of the EKS Cluster)"
type = list(string)
}
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. `{ Deployed = \"xxxx\" }`"
}
variable "namespaces" {
type = list(string)
description = "Kubernetes namespace(s) for selection. Adding more than one namespace, creates and manages multiple namespaces."
}
variable "labels" {
type = map(string)
description = "Key-value mapping of Kubernetes labels for selection"
default = {}
}
variable "prefix" {
type = string
description = "Prefix added to the name. In case your cluster name begins with a reserved string (e.g. `eks-`)."
default = ""
}
variable "suffix" {
type = string
description = "Suffix added to the name. In case we need more then one profile in same namespace"
default = ""
}