Skip to content
Merged
Show file tree
Hide file tree
Changes from 13 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
9a22208
[PRMP-1475] add env vars to lambda
steph-torres-nhs Feb 25, 2026
3c70446
[PRMP-1475] ammend ssm param name for data object
steph-torres-nhs Feb 26, 2026
c6178b2
Merge branch 'main' into PRMP-1475
steph-torres-nhs Feb 26, 2026
6e1fe25
[PRMP-1475] add output to ssm module
steph-torres-nhs Feb 26, 2026
ba06e0a
[PRMP-1475] add indexing to output
steph-torres-nhs Feb 26, 2026
a3a0d00
[PRMP-1475] add index
steph-torres-nhs Feb 26, 2026
067c9a4
[PRMP-1475] remove index
steph-torres-nhs Feb 26, 2026
2a3be3a
[PRMP-1475] update output
steph-torres-nhs Feb 26, 2026
60bf056
[PRMP-1475] fix unknown attribute
steph-torres-nhs Feb 26, 2026
90b3069
[PRMP-1475] use data object
steph-torres-nhs Feb 27, 2026
7701cf6
[PRMP-1475] remove dependency
steph-torres-nhs Feb 27, 2026
b49e4f2
[PRMP-1475] amend reading of ssm param
steph-torres-nhs Feb 27, 2026
5f11e8e
[PRMP-1475] amend data obj
steph-torres-nhs Feb 27, 2026
d9eb392
Merge branch 'main' into PRMP-1475
steph-torres-nhs Mar 3, 2026
ebb347c
[PRMP-1475] remove env var
steph-torres-nhs Mar 3, 2026
3c9978f
[PRMP-1475] address PR comment
steph-torres-nhs Mar 3, 2026
8a14b2b
[PRMP-1475] update ssm data object
steph-torres-nhs Mar 4, 2026
a00082e
Merge branch 'main' into PRMP-1475
steph-torres-nhs Mar 5, 2026
df1a1d9
Merge branch 'main' into PRMP-1475
steph-torres-nhs Mar 5, 2026
2c65f35
[PRMP-1475] update gateway origin
steph-torres-nhs Mar 5, 2026
3903beb
Merge branch 'main' into PRMP-1475
steph-torres-nhs Mar 11, 2026
b126d33
Merge branch 'main' into PRMP-1475
SWhyteAnswer Mar 13, 2026
788d3f6
Merge branch 'main' into PRMP-1475
steph-torres-nhs Mar 13, 2026
59cb974
Merge branch 'main' into PRMP-1475
SWhyteAnswer Mar 18, 2026
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
10 changes: 6 additions & 4 deletions infrastructure/lambda-get-user-information.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,12 @@ module "get_user_information_lambda" {
http_methods = ["GET"]
api_execution_arn = aws_api_gateway_rest_api.ndr_doc_store_api.execution_arn
lambda_environment_variables = {
APPCONFIG_APPLICATION = module.ndr-app-config.app_config_application_id
APPCONFIG_ENVIRONMENT = module.ndr-app-config.app_config_environment_id
APPCONFIG_CONFIGURATION = module.ndr-app-config.app_config_configuration_profile_id
WORKSPACE = terraform.workspace
APPCONFIG_APPLICATION = module.ndr-app-config.app_config_application_id
APPCONFIG_ENVIRONMENT = module.ndr-app-config.app_config_environment_id
APPCONFIG_CONFIGURATION = module.ndr-app-config.app_config_configuration_profile_id
WORKSPACE = terraform.workspace
USE_MOCK_HEALTHCARE_SERVICE = true
Comment thread
NogaNHS marked this conversation as resolved.
Outdated
HEALTHCARE_WORKER_API_URL = data.aws_ssm_parameter.healthcare_worker_api_base_url.value
}

depends_on = [
Expand Down
3 changes: 3 additions & 0 deletions infrastructure/ssm_parameters_user_restrictions.tf
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,6 @@ module "healthcare_worker_api_base_url" {
ignore_value_changes = true
}

data "aws_ssm_parameter" "healthcare_worker_api_base_url" {
name = local.is_sandbox ? "/ndr/ndr-dev/hcw_api_url" : "/ndr/${terraform.workspace}/hcw_api_url"
Comment thread
NogaNHS marked this conversation as resolved.
Outdated
}