-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterraform-istio.auto.tfvars.example
143 lines (129 loc) · 3.88 KB
/
terraform-istio.auto.tfvars.example
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
# File auto-generated by ./bin/make-example-tfvars
# istio_version - Istio version.
# Type: ${string}
# Default: "1.20.2"
#istio_version = "1.20.2"
# istio_namespace - Istio namespace.
# Type: ${string}
# Default: "istio-system"
#istio_namespace = "istio-system"
# istio_base_values - Path to istio-base values file. Start it with / for absolute path or ./ to relative to root module. Set it to empty string to ignore.
# Type: ${string}
# Default: ""
#istio_base_values = ""
# istio_base_set - Value block with custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${any}"}))}
# Default: [
# {
# "name": "base.enableCRDTemplates",
# "value": false
# }
#]
#istio_base_set = [
# {
# "name": "base.enableCRDTemplates",
# "value": false
# }
#]
# istio_base_set_list - Value block with list of custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${list(any)}"}))}
# Default: []
#istio_base_set_list = []
# istiod_values - Path to istiod values file. Start with / for absolute path or ./ to relative to root module. Set it to empty string to ignore.
# Type: ${string}
# Default: ""
#istiod_values = ""
# istiod_set - Value block with custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${any}"}))}
# Default: [
# {
# "name": "pilot.resources.requests.memory",
# "value": "1Gi"
# },
# {
# "name": "pilot.replicaCount",
# "value": "2"
# },
# {
# "name": "pilot.autoscaleMin",
# "value": "2"
# }
#]
#istiod_set = [
# {
# "name": "pilot.resources.requests.memory",
# "value": "1Gi"
# },
# {
# "name": "pilot.replicaCount",
# "value": "2"
# },
# {
# "name": "pilot.autoscaleMin",
# "value": "2"
# }
#]
# istiod_set_list - Value block with list of custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${list(string)}"}))}
# Default: []
#istiod_set_list = []
# ingress_gateway_values - Path to istio ingress-gateway values file. Start with / for absolute path or ./ to relative to root module. Set it to empty string to ignore.
# Type: ${string}
# Default: ""
#ingress_gateway_values = ""
# ingress_gateway_set - Value block with custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${string}"}))}
# Default: [
# {
# "name": "service.annotations.service\\\\.beta\\\\.kubernetes\\\\.io/aws-load-balancer-type",
# "value": "nlb"
# },
# {
# "name": "replicaCount",
# "value": "2"
# },
# {
# "name": "autoscaling.minReplicas",
# "value": "2"
# }
#]
#ingress_gateway_set = [
# {
# "name": "service.annotations.service\\\\.beta\\\\.kubernetes\\\\.io/aws-load-balancer-type",
# "value": "nlb"
# },
# {
# "name": "replicaCount",
# "value": "2"
# },
# {
# "name": "autoscaling.minReplicas",
# "value": "2"
# }
#]
# ingress_gateway_set_list - Value block with list of custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${list(string)}"}))}
# Default: []
#ingress_gateway_set_list = []
# egress_gateway_values - Path to istio egress-gateway values file. Start with / for absolute path or ./ to relative to root module. Set it to empty string to ignore.
# Type: ${string}
# Default: ""
#egress_gateway_values = ""
# egress_gateway_set - Value block with custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${string}"}))}
# Default: [
# {
# "name": "service.type",
# "value": "ClusterIP"
# }
#]
#egress_gateway_set = [
# {
# "name": "service.type",
# "value": "ClusterIP"
# }
#]
# egress_gateway_set_list - Value block with list of custom values to be merged with the values yaml.
# Type: ${list(object({"name": "${string}", "value": "${list(string)}"}))}
# Default: []
#egress_gateway_set_list = []