This repository has been archived by the owner on Aug 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvariables.tf
78 lines (65 loc) · 1.67 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
variable "kubernetes_cluster_name" {
type = string
description = "Kubernetes cluster name."
}
variable "aws_vpc_id" {
type = string
description = "AWS VPC ID."
}
variable "aws_region" {
type = string
description = "AWS region."
}
variable "kubernetes_namespace" {
type = string
default = "kube-system"
description = "Kubernetes namespace to deploy external dns."
}
variable "kubernetes_namespace_create" {
type = bool
default = false
description = "Do you want to create kubernetes namespace?"
}
variable "kubernetes_resources_name_prefix" {
type = string
default = ""
description = "Prefix for kubernetes resources name. For example `tf-module-`"
}
variable "kubernetes_resources_labels" {
type = map(string)
default = {}
description = "Additional labels for kubernetes resources."
}
variable "kubernetes_deployment_image_registry" {
type = string
default = "docker.io/amazon/aws-alb-ingress-controller"
}
variable "kubernetes_deployment_image_tag" {
type = string
default = "v1.1.8"
}
variable "kubernetes_deployment_annotations" {
type = map(string)
default = {}
description = "Annotations for pod template"
}
variable "kubernetes_deployment_node_selector" {
type = map(string)
default = {}
description = "Node selectors for kubernetes deployment"
}
variable "aws_create_iam_policy" {
type = bool
default = true
description = "Do you want to create IAM policy?"
}
variable "aws_iam_policy_name" {
type = string
default = "KubernetesAlbIngressController"
description = "Name of AWS IAM policy."
}
variable "aws_iam_role_for_policy" {
type = string
default = null
description = "AWS role name for attaching IAM policy"
}