File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -85,6 +85,9 @@ resource "kubernetes_manifest" "materialize_instances" {
85
85
inPlaceRollout = each.value.in_place_rollout
86
86
requestRollout = lookup (each. value , " request_rollout" , null )
87
87
forceRollout = lookup (each. value , " force_rollout" , null )
88
+
89
+ environmentdExtraArgs = length (lookup (each. value , " environmentd_extra_args" , [])) > 0 ? each.value.environmentd_extra_args : null
90
+
88
91
environmentdResourceRequirements = {
89
92
limits = {
90
93
memory = each.value.memory_limit
Original file line number Diff line number Diff line change @@ -73,6 +73,7 @@ variable "instances" {
73
73
persist_backend_url = string
74
74
license_key = optional (string )
75
75
environmentd_version = optional (string , " v0.130.8" )
76
+ environmentd_extra_args = optional (list (string ), [])
76
77
cpu_request = optional (string , " 1" )
77
78
memory_request = optional (string , " 1Gi" )
78
79
memory_limit = optional (string , " 1Gi" )
You can’t perform that action at this time.
0 commit comments