You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make MAVIS__PDS__ENQUEUE_BULK_UPDATES configurable (#3379)
This makes this variable configurable by adding it as a parameter and
then exposing the variable as an environment variable.
This would then allow us to enable/disable this part of the service per
environment while also being able to temporarily turn it on and off.
This will start by enabling it in all environments and then we can turn
it off.
Copy file name to clipboardExpand all lines: terraform/app/variables.tf
+4-11Lines changed: 4 additions & 11 deletions
Original file line number
Diff line number
Diff line change
@@ -143,13 +143,6 @@ variable "enable_cis2" {
143
143
nullable=false
144
144
}
145
145
146
-
variable"enable_pds_enqueue_bulk_updates" {
147
-
type=bool
148
-
default=false
149
-
description="Whether PDS jobs that update patients in bulk should execute or not. This is disabled in non-production environments to avoid making unnecessary requests to PDS."
150
-
nullable=false
151
-
}
152
-
153
146
variable"enable_splunk" {
154
147
type=bool
155
148
default=true
@@ -189,10 +182,6 @@ locals {
189
182
name ="MAVIS__CIS2__ENABLED"
190
183
value = var.enable_cis2 ?"true":"false"
191
184
},
192
-
{
193
-
name ="MAVIS__PDS__ENQUEUE_BULK_UPDATES"
194
-
value = var.enable_pds_enqueue_bulk_updates ?"true":"false"
0 commit comments