From 2cf8b960b8ad833150de1ff8a656e025c4349884 Mon Sep 17 00:00:00 2001 From: Rio Knightley Date: Mon, 9 Sep 2024 10:28:48 +0100 Subject: [PATCH] Extend test logging --- .github/workflows/terraform-destroy-environment-manual.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/terraform-destroy-environment-manual.yml b/.github/workflows/terraform-destroy-environment-manual.yml index 536d7ad7..ef508887 100644 --- a/.github/workflows/terraform-destroy-environment-manual.yml +++ b/.github/workflows/terraform-destroy-environment-manual.yml @@ -30,12 +30,16 @@ permissions: id-token: write contents: read +env: + # Setting an environment variable with the value of a configuration variable + AWS_REGION: ${{ vars.AWS_REGION }} + jobs: debug_region: runs-on: ubuntu-latest steps: - name: Print AWS_REGION - run: echo ${{ vars.AWS_REGION }} + run: echo ${{ vars.AWS_REGION }} && echo ${{env.AWS_REGION}} remove_edge_associations: name: Remove Lambda@Edge Associations uses: ./.github/workflows/cleanup-cloudfront-edge-associations.yml