Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions infrastructure/lambda-create-user-restriction.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ module "create_user_restriction_lambda" {
WORKSPACE = terraform.workspace
RESTRICTIONS_TABLE_NAME = module.user_restriction_table.table_name
HEALTHCARE_WORKER_API_URL = local.is_sandbox ? "" : data.aws_ssm_parameter.healthcare_worker_api_base_url.value
PDS_FHIR_IS_STUBBED = local.is_sandbox
}

depends_on = [
Expand Down
2 changes: 1 addition & 1 deletion infrastructure/lambda-search-patient.tf
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ module "search-patient-details-lambda" {
APPCONFIG_ENVIRONMENT = module.ndr-app-config.app_config_environment_id
APPCONFIG_CONFIGURATION = module.ndr-app-config.app_config_configuration_profile_id
SSM_PARAM_JWT_TOKEN_PUBLIC_KEY = "jwt_token_public_key"
PDS_FHIR_IS_STUBBED = local.is_sandbox,
PDS_FHIR_IS_STUBBED = local.is_sandbox
WORKSPACE = terraform.workspace
AUTH_SESSION_TABLE_NAME = "${terraform.workspace}_${var.auth_session_dynamodb_table_name}"
RESTRICTIONS_TABLE_NAME = module.user_restriction_table.table_name
Expand Down
1 change: 1 addition & 0 deletions infrastructure/lambda-search-user-restriction.tf
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ module "search_user_restriction_lambda" {
WORKSPACE = terraform.workspace
RESTRICTIONS_TABLE_NAME = module.user_restriction_table.table_name
HEALTHCARE_WORKER_API_URL = data.aws_ssm_parameter.healthcare_worker_api_base_url.value
PDS_FHIR_IS_STUBBED = local.is_sandbox
}

depends_on = [
Expand Down
Loading