File tree 4 files changed +10
-0
lines changed
4 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ disk_support_config = {
123
123
| <a name =" module_networking " ></a > [ networking] ( #module\_ networking ) | ./modules/networking | n/a |
124
124
| <a name =" module_nlb " ></a > [ nlb] ( #module\_ nlb ) | ./modules/nlb | n/a |
125
125
| <a name =" module_operator " ></a > [ operator] ( #module\_ operator ) | github.com/MaterializeInc/terraform-helm-materialize | v0.1.12 |
126
+ | <a name =" module_operator " ></a > [ operator] ( #module\_ operator ) | github.com/MaterializeInc/terraform-helm-materialize | v0.1.10 |
126
127
| <a name =" module_storage " ></a > [ storage] ( #module\_ storage ) | ./modules/storage | n/a |
127
128
128
129
## Resources
Original file line number Diff line number Diff line change @@ -150,6 +150,10 @@ variable "materialize_instances" {
150
150
balancer_memory_limit = optional (string , " 256Mi" )
151
151
balancer_cpu_request = optional (string , " 100m" )
152
152
license_key = optional (string )
153
+ environmentd_extra_env = optional (list (object ({
154
+ name = string
155
+ value = string
156
+ })), [])
153
157
}))
154
158
default = []
155
159
}
Original file line number Diff line number Diff line change @@ -267,6 +267,7 @@ locals {
267
267
create_nlb = instance . create_nlb
268
268
internal_nlb = instance . internal_nlb
269
269
enable_cross_zone_load_balancing = instance . enable_cross_zone_load_balancing
270
+ environmentd_extra_env = instance . environmentd_extra_env
270
271
271
272
metadata_backend_url = format (
272
273
" postgres://%s:%s@%s/%s?sslmode=require" ,
Original file line number Diff line number Diff line change @@ -367,6 +367,10 @@ variable "materialize_instances" {
367
367
balancer_memory_limit = optional (string , " 256Mi" )
368
368
balancer_cpu_request = optional (string , " 100m" )
369
369
license_key = optional (string )
370
+ environmentd_extra_env = optional (list (object ({
371
+ name = string
372
+ value = string
373
+ })), [])
370
374
}))
371
375
default = []
372
376
You can’t perform that action at this time.
0 commit comments