File tree Expand file tree Collapse file tree 6 files changed +8
-7
lines changed
Expand file tree Collapse file tree 6 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ No requirements.
1010| Name | Description | Type | Default | Required |
1111| ------| -------------| ------| ---------| :--------:|
1212| <a name =" input_aws_account_id " ></a > [ aws\_ account\_ id] ( #input\_ aws\_ account\_ id ) | The AWS Account ID (numeric) | ` string ` | n/a | yes |
13- | <a name =" input_component " ></a > [ component] ( #input\_ component ) | The variable encapsulating the name of this component | ` string ` | ` "sb " ` | no |
13+ | <a name =" input_component " ></a > [ component] ( #input\_ component ) | The variable encapsulating the name of this component | ` string ` | ` "sbx " ` | no |
1414| <a name =" input_default_tags " ></a > [ default\_ tags] ( #input\_ default\_ tags ) | A map of default tags to apply to all taggable resources within the component | ` map(string) ` | ` {} ` | no |
1515| <a name =" input_environment " ></a > [ environment] ( #input\_ environment ) | The name of the tfscaffold environment | ` string ` | n/a | yes |
1616| <a name =" input_group " ></a > [ group] ( #input\_ group ) | The group variables are being inherited from (often synonymous with account short-name) | ` string ` | n/a | yes |
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ variable "group" {
3838variable "component" {
3939 type = string
4040 description = " The variable encapsulating the name of this component"
41- default = " sb "
41+ default = " sbx "
4242}
4343
4444variable "default_tags" {
Original file line number Diff line number Diff line change @@ -45,8 +45,8 @@ No requirements.
4545| <a name =" module_list_template_lambda " ></a > [ list\_ template\_ lambda] ( #module\_ list\_ template\_ lambda ) | ../lambda-function | n/a |
4646| <a name =" module_s3bucket_internal " ></a > [ s3bucket\_ internal] ( #module\_ s3bucket\_ internal ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket | v1.0.8 |
4747| <a name =" module_s3bucket_quarantine " ></a > [ s3bucket\_ quarantine] ( #module\_ s3bucket\_ quarantine ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket | v1.0.8 |
48- | <a name =" module_sftp_upload_queue " ></a > [ sftp\_ upload\_ queue] ( #module\_ sftp\_ upload\_ queue ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.11 |
49- | <a name =" module_sqs_quarantine_scan_enrichment " ></a > [ sqs\_ quarantine\_ scan\_ enrichment] ( #module\_ sqs\_ quarantine\_ scan\_ enrichment ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.11 |
48+ | <a name =" module_sftp_upload_queue " ></a > [ sftp\_ upload\_ queue] ( #module\_ sftp\_ upload\_ queue ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | 80b61143ffd21251b6e13eb5ea154fbc0e74b1b8 |
49+ | <a name =" module_sqs_quarantine_scan_enrichment " ></a > [ sqs\_ quarantine\_ scan\_ enrichment] ( #module\_ sqs\_ quarantine\_ scan\_ enrichment ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.8 |
5050| <a name =" module_sqs_virus_scan_failed_delete_object_dlq " ></a > [ sqs\_ virus\_ scan\_ failed\_ delete\_ object\_ dlq] ( #module\_ sqs\_ virus\_ scan\_ failed\_ delete\_ object\_ dlq ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.8 |
5151| <a name =" module_sqs_virus_scan_passed_copy_object_dlq " ></a > [ sqs\_ virus\_ scan\_ passed\_ copy\_ object\_ dlq] ( #module\_ sqs\_ virus\_ scan\_ passed\_ copy\_ object\_ dlq ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.8 |
5252| <a name =" module_sqs_virus_scan_set_file_status_dlq " ></a > [ sqs\_ virus\_ scan\_ set\_ file\_ status\_ dlq] ( #module\_ sqs\_ virus\_ scan\_ set\_ file\_ status\_ dlq ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs | v1.0.8 |
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ module "lambda_send_letter_proof" {
1313
1414 environment_variables = {
1515 CSI = local.csi
16+ ENVIRONMENT = var.environment
1617 INTERNAL_BUCKET_NAME = module.s3bucket_internal.id
1718 DEFAULT_LETTER_SUPPLIER = local.default_letter_supplier.name
1819 SFTP_ENVIRONMENT = local.sftp_environment
@@ -42,7 +43,7 @@ data "aws_iam_policy_document" "send_letter_proof" {
4243
4344 actions = [
4445 " s3:GetObject" ,
45- " s3:GetObjectVersion" , // TODO: needed?
46+ " s3:GetObjectVersion" ,
4647 ]
4748
4849 resources = [" ${ module . s3bucket_internal . arn } /*" ]
Original file line number Diff line number Diff line change 11module "sqs_quarantine_scan_enrichment" {
2- source = " git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs?ref=v1.0.11 "
2+ source = " git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs?ref=v1.0.8 "
33
44 aws_account_id = var. aws_account_id
55 component = var. component
Original file line number Diff line number Diff line change 11module "sftp_upload_queue" {
2- source = " git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs?ref=v1.0.11 "
2+ source = " git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/sqs?ref=80b61143ffd21251b6e13eb5ea154fbc0e74b1b8 "
33
44 aws_account_id = var. aws_account_id
55 component = var. component
You can’t perform that action at this time.
0 commit comments