This repository has been archived by the owner on Jun 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
83 lines (67 loc) · 1.78 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
variable "region" {
default = "ap-southeast-1"
type = string
}
variable "aws_profile" {
default = "deafult"
type = string
}
variable "vpc_id" {
default = ""
type = string
}
variable "tags" {
type = map
default = {}
}
variable "kubeconfig" {
default = ""
type = string
}
variable "cluster_name" {
type = string
description = "EKS cluster name"
}
variable "extra_namespaces" {
type = list(string)
description = "Extra kubernetes namespaces to create"
default = []
}
variable "enable_fluentd_gcp_logging" {
default = false
description = "Whether to deploy fluentd-gcp to collect node and container logs"
}
variable "fluentd_gcp_logging_service_account_json_key" {
default = ""
description = "[OPTIONAL] The content of the google service account json key used for fluentd-gcp logging"
}
variable "clusterrolebindings" {
default = []
description = "List of map of clusterroblebindings, currently only group as subject is supportd. A map should contain keys: name, clusterrole, group"
}
variable "enable_external_dns" {
default = false
description = "Whether to deploy external-dns with Route53"
}
variable "external_dns_route53_zone_type" {
default = "public"
}
variable "external_dns_domainFilters" {
type = list(string)
default = []
}
variable "external_dns_zoneIdFilters" {
type = list(string)
default = []
}
variable "istio_version" {
default = "1.3.5"
description = "Istio version to install"
}
variable "istio_ingressgateway_alb_cert_arn" {
default = ""
description = "[Optional] The AWS TLS certificates ARN (in IAM or ACM) for istio ALB ingress gateway"
}
variable "helm_configuration_overrides" {
description = "JSON string of Helm configurationOverrides key: values"
}