File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
infrastructure/terraform/components/api Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,7 @@ No requirements.
3636| <a name =" module_kms " ></a > [ kms] ( #module\_ kms ) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.20/terraform-kms.zip | n/a |
3737| <a name =" module_logging_bucket " ></a > [ logging\_ bucket] ( #module\_ logging\_ bucket ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket | v2.0.17 |
3838| <a name =" module_patch_letters " ></a > [ patch\_ letters] ( #module\_ patch\_ letters ) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.20/terraform-lambda.zip | n/a |
39+ | <a name =" module_s3bucket_test_letters " ></a > [ s3bucket\_ test\_ letters] ( #module\_ s3bucket\_ test\_ letters ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket | v2.0.20 |
3940| <a name =" module_supplier_ssl " ></a > [ supplier\_ ssl] ( #module\_ supplier\_ ssl ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/ssl | v2.0.17 |
4041## Outputs
4142
Original file line number Diff line number Diff line change 1+ module "s3bucket_test_letters" {
2+ source = " git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket?ref=v2.0.20"
3+
4+ name = " test-letters"
5+
6+ aws_account_id = var. aws_account_id
7+ region = " eu-west-2"
8+ project = var. project
9+ environment = var. environment
10+ component = var. component
11+
12+ acl = " private"
13+ force_destroy = var. force_s3_destroy
14+ versioning = false
15+
16+ bucket_logging_target = {
17+ bucket = local.acct.s3_buckets[" access_logs" ][" id" ]
18+ }
19+
20+ public_access = {
21+ block_public_acls = true
22+ block_public_policy = true
23+ ignore_public_acls = true
24+ restrict_public_buckets = true
25+ }
26+
27+ default_tags = {
28+ Name = " Supplier API Test Letters"
29+ }
30+ }
You can’t perform that action at this time.
0 commit comments