Merge pull request #811 from Hestia-Homes/feature/ordanant_survey_api

capital letter
This commit is contained in:
Jun-te Kim 2026-03-09 17:10:27 +00:00 committed by GitHub
commit 0509d7fc74
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View file

@ -58,7 +58,7 @@ on:
required: false
TF_VAR_google_solar_api_key:
required: false
TF_VAR_ORDNANCE_SURVEY_API_KEY:
TF_VAR_ordnance_survey_api_key:
required: false
jobs:
@ -117,7 +117,7 @@ jobs:
TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }}
TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }}
TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }}
TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}}
TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}}
run: |
terraform plan \
-var="stage=${{ inputs.stage }}" \
@ -143,7 +143,7 @@ jobs:
TF_VAR_domain_name: ${{ secrets.TF_VAR_domain_name }}
TF_VAR_epc_auth_token: ${{ secrets.TF_VAR_epc_auth_token }}
TF_VAR_google_solar_api_key: ${{ secrets.TF_VAR_google_solar_api_key }}
TF_VAR_ORDNANCE_SURVEY_API_KEY: ${{ secrets.ORDNANCE_SURVEY_API_KEY}}
TF_VAR_ordnance_survey_api_key: ${{ secrets.TF_VAR_ordnance_survey_api_key}}
run: |
terraform destroy -auto-approve \
-var="stage=${{ inputs.stage }}" \

View file

@ -42,4 +42,4 @@ module "ordnance" {
resource "aws_iam_role_policy_attachment" "ordanceSurvey_read_and_write" {
role = module.ordnance.role_name
policy_arn = data.terraform_remote_state.shared.outputs.ordnance_s3_read_and_write_arn
}
}