Skip to content

Commit 5b0c45e

Browse files
fix for missing dependency in DeleteParticipant
1 parent 609374d commit 5b0c45e

7 files changed

Lines changed: 25 additions & 0 deletions

File tree

application/CohortManager/src/Functions/ParticipantManagementServices/DeleteParticipant/Program.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
.AddConfiguration<DeleteParticipantConfig>(out DeleteParticipantConfig config)
1212
.ConfigureFunctionsWebApplication()
1313
.AddDataServicesHandler()
14+
.AddDataService<ParticipantDemographic>(config.ParticipantDemographicDataServiceUrl)
1415
.AddDataService<CohortDistribution>(config.CohortDistributionDataServiceUrl)
1516
.Build()
1617
.ConfigureServices(services =>

infrastructure/tf-core/environments/development.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -549,6 +549,10 @@ function_apps = {
549549
env_var_name = "ExceptionFunctionURL"
550550
function_app_key = "CreateException"
551551
},
552+
{
553+
env_var_name = "ParticipantDemographicDataServiceURL"
554+
function_app_key = "ParticipantDemographicDataService"
555+
},
552556
{
553557
env_var_name = "CohortDistributionDataServiceURL"
554558
function_app_key = "CohortDistributionDataService"

infrastructure/tf-core/environments/integration.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -529,6 +529,10 @@ function_apps = {
529529
env_var_name = "ExceptionFunctionURL"
530530
function_app_key = "CreateException"
531531
},
532+
{
533+
env_var_name = "ParticipantDemographicDataServiceURL"
534+
function_app_key = "ParticipantDemographicDataService"
535+
},
532536
{
533537
env_var_name = "CohortDistributionDataServiceURL"
534538
function_app_key = "CohortDistributionDataService"

infrastructure/tf-core/environments/nft.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -526,6 +526,10 @@ function_apps = {
526526
env_var_name = "ExceptionFunctionURL"
527527
function_app_key = "CreateException"
528528
},
529+
{
530+
env_var_name = "ParticipantDemographicDataServiceURL"
531+
function_app_key = "ParticipantDemographicDataService"
532+
},
529533
{
530534
env_var_name = "CohortDistributionDataServiceURL"
531535
function_app_key = "CohortDistributionDataService"

infrastructure/tf-core/environments/preprod.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -539,6 +539,10 @@ function_apps = {
539539
env_var_name = "ExceptionFunctionURL"
540540
function_app_key = "CreateException"
541541
},
542+
{
543+
env_var_name = "ParticipantDemographicDataServiceURL"
544+
function_app_key = "ParticipantDemographicDataService"
545+
},
542546
{
543547
env_var_name = "CohortDistributionDataServiceURL"
544548
function_app_key = "CohortDistributionDataService"

infrastructure/tf-core/environments/production.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -560,6 +560,10 @@ function_apps = {
560560
env_var_name = "ExceptionFunctionURL"
561561
function_app_key = "CreateException"
562562
},
563+
{
564+
env_var_name = "ParticipantDemographicDataServiceURL"
565+
function_app_key = "ParticipantDemographicDataService"
566+
},
563567
{
564568
env_var_name = "CohortDistributionDataServiceURL"
565569
function_app_key = "CohortDistributionDataService"

infrastructure/tf-core/environments/sandbox.tfvars

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -531,6 +531,10 @@ function_apps = {
531531
env_var_name = "ExceptionFunctionURL"
532532
function_app_key = "CreateException"
533533
},
534+
{
535+
env_var_name = "ParticipantDemographicDataServiceURL"
536+
function_app_key = "ParticipantDemographicDataService"
537+
},
534538
{
535539
env_var_name = "CohortDistributionDataServiceURL"
536540
function_app_key = "CohortDistributionDataService"

0 commit comments

Comments
 (0)