File tree Expand file tree Collapse file tree 7 files changed +11
-8
lines changed
infrastructure/terraform/components/api
devcontainer/custom-ca-certs Expand file tree Collapse file tree 7 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 6060 --targetEnvironment "main" \
6161 --targetAccountGroup "nhs-notify-supplier-api-dev" \
6262 --targetComponent "${{ matrix.component }}" \
63- --terraformAction "apply"
63+ --terraformAction "apply" \
64+ --overrideProjectName "nhs" \
65+ --overrideRoleName "nhs-main-acct-supplier-api-github-deploy"
Original file line number Diff line number Diff line change 3636 --targetEnvironment "main" \
3737 --targetAccountGroup "nhs-notify-supplier-api-nonprod" \
3838 --targetComponent "${{ matrix.component }}" \
39- --terraformAction "apply"
39+ --terraformAction "apply" \
40+ --overrideProjectName "nhs" \
41+ --overrideRoleName "nhs-main-acct-supplier-api-github-deploy"
Original file line number Diff line number Diff line change @@ -31,8 +31,6 @@ No requirements.
3131| ------| --------| ---------|
3232| <a name =" module_authorizer_lambda " ></a > [ authorizer\_ lambda] ( #module\_ authorizer\_ lambda ) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.20/terraform-lambda.zip | n/a |
3333| <a name =" module_domain_truststore " ></a > [ domain\_ truststore] ( #module\_ domain\_ truststore ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/s3bucket | v2.0.17 |
34- | <a name =" module_get_letters " ></a > [ get\_ letters] ( #module\_ get\_ letters ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/lambda | v2.0.10 |
35- | <a name =" module_kms " ></a > [ kms] ( #module\_ kms ) | git::https://github.com/NHSDigital/nhs-notify-shared-modules.git//infrastructure/modules/kms | v2.0.10 |
3634| <a name =" module_get_letters " ></a > [ get\_ letters] ( #module\_ get\_ letters ) | https://github.com/NHSDigital/nhs-notify-shared-modules/releases/download/v2.0.20/terraform-lambda.zip | n/a |
3735| <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 |
3836| <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 |
Original file line number Diff line number Diff line change 1- // Use this file as a starting point for your project's .eslintrc.
2- // Copy this file, and add rule overrides as needed.
31{
42 "extends" : " airbnb-base" ,
53 "rules" : {
Original file line number Diff line number Diff line change 1515 args : ['--autofix']
1616 exclude : |
1717 (?x)^(
18+ package(-lock)?\.json$ |
1819 sdk/.* |
1920 someotherdir/.* |
2021 src/server/host/Properties/launchSettings.json
Original file line number Diff line number Diff line change 1+ *
2+ ! .gitignore
Original file line number Diff line number Diff line change @@ -46,8 +46,8 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4646 asdf install ${name} $(or ${version},)
4747
4848_install-dependencies : # Install all the dependencies listed in .tool-versions
49- for plugin in $$ (grep ^[a-z] .tool-versions | sed ' s/[[:space:]].*// ' ); do
50- make _install-dependency name= " $$ {plugin}"
49+ for plugin in $$ (grep ' ^[a-z]' .tool-versions | cut -f1 -d ' ' ); do \
50+ echo " Installing $$ {plugin}... " ; \
5151 done
5252
5353clean :: # Remove all generated and temporary files (common) @Operations
You can’t perform that action at this time.
0 commit comments