Skip to content

Commit 4767e9b

Browse files
committed
Remove duplicated PDS call
1 parent dde2dff commit 4767e9b

File tree

14 files changed

+116
-126
lines changed

14 files changed

+116
-126
lines changed

infrastructure/instance/endpoints.tf

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ locals {
2828
"IMMUNIZATION_BASE_PATH" = strcontains(var.sub_environment, "pr-") ? "immunisation-fhir-api/FHIR/R4-${var.sub_environment}" : "immunisation-fhir-api/FHIR/R4"
2929
# except for prod and ref, any other env uses PDS int environment
3030
"PDS_ENV" = var.pds_environment
31-
"PDS_CHECK_ENABLED" = tostring(var.pds_check_enabled)
3231
"SPLUNK_FIREHOSE_NAME" = module.splunk.firehose_stream_name
3332
"SQS_QUEUE_URL" = "https://sqs.eu-west-2.amazonaws.com/${var.immunisation_account_id}/${local.short_prefix}-ack-metadata-queue.fifo"
3433
"REDIS_HOST" = data.aws_elasticache_cluster.existing_redis.cache_nodes[0].address

infrastructure/instance/environments/dev/int/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "345594581768"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "int"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = false
76
create_mesh_processor = true
87
has_sub_environment_scope = true

infrastructure/instance/environments/dev/internal-dev/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "345594581768"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "int"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = true
76
create_mesh_processor = false
87
has_sub_environment_scope = true

infrastructure/instance/environments/dev/pr/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "345594581768"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "int"
55
batch_error_notifications_enabled = false
6-
pds_check_enabled = true
76
create_mesh_processor = false
87
has_sub_environment_scope = true

infrastructure/instance/environments/dev/ref/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "345594581768"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "ref"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = true
76
create_mesh_processor = false
87
has_sub_environment_scope = true

infrastructure/instance/environments/preprod/int-blue/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "084828561157"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "int"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = false
76
create_mesh_processor = false
87
has_sub_environment_scope = false

infrastructure/instance/environments/preprod/int-green/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "084828561157"
33
dspp_core_account_id = "603871901111"
44
pds_environment = "int"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = false
76
create_mesh_processor = false
87
has_sub_environment_scope = false

infrastructure/instance/environments/prod/blue/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "664418956997"
33
dspp_core_account_id = "232116723729"
44
pds_environment = "prod"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = true
76
create_mesh_processor = true
87
has_sub_environment_scope = false

infrastructure/instance/environments/prod/green/variables.tfvars

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,5 @@ immunisation_account_id = "664418956997"
33
dspp_core_account_id = "232116723729"
44
pds_environment = "prod"
55
batch_error_notifications_enabled = true
6-
pds_check_enabled = true
76
create_mesh_processor = true
87
has_sub_environment_scope = false

infrastructure/instance/variables.tf

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ variable "pds_environment" {
3434
default = "int"
3535
}
3636

37-
variable "pds_check_enabled" {
38-
default = true
39-
}
40-
4137
# Remember to switch off in PR envs after testing
4238
variable "batch_error_notifications_enabled" {
4339
default = true

0 commit comments

Comments
 (0)