Skip to content

Commit 5926e92

Browse files
authored
VED-897 Remove PID from id sync lambda (#968)
1 parent a4c2a29 commit 5926e92

File tree

22 files changed

+226
-446
lines changed

22 files changed

+226
-446
lines changed

.github/pull_request_template.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ Add any other relevant notes or explanations here. **Remove this line if you hav
1919

2020
:information_source: This section is to be filled in by the **reviewer**.
2121

22-
- [ ] I have reviewed the changes in this PR and they fill all or part of the acceptance criteria of the ticket, and the code is in a mergeable state.
22+
- [ ] I have reviewed the changes in this PR and they fill all of the acceptance criteria of the ticket.
2323
- [ ] If there were infrastructure, operational, or build changes, I have made sure there is sufficient evidence that the changes will work.
24-
- [ ] I have ensured the changelog has been updated by the submitter, if necessary.
24+
- [ ] If there were changes that are outside of the regular release processes e.g. account infrastructure to setup, manual setup for external API integrations, secrets to set, then I have checked that the developer has flagged this to the Tech Lead as release steps.
25+
- [ ] I have checked that no Personal Identifiable Data (PID) is logged as part of the changes.

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

0 commit comments

Comments
 (0)