From 362695671c9ea9ba1921652ee416a5764aacaa75 Mon Sep 17 00:00:00 2001 From: Rio Knightley Date: Mon, 9 Sep 2024 10:31:39 +0100 Subject: [PATCH] Add region logging to create sandbox --- .../workflows/terraform-deploy-feature-to-sandbox.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/terraform-deploy-feature-to-sandbox.yml b/.github/workflows/terraform-deploy-feature-to-sandbox.yml index 25bad4fe..77bb4fdb 100644 --- a/.github/workflows/terraform-deploy-feature-to-sandbox.yml +++ b/.github/workflows/terraform-deploy-feature-to-sandbox.yml @@ -13,10 +13,10 @@ on: required: true type: 'string' environment: - default: "development" - description: "Which environment should this run against" + default: 'development' + description: 'Which environment should this run against' required: true - type: "string" + type: 'string' permissions: pull-requests: write @@ -24,6 +24,11 @@ permissions: contents: read # This is required for actions/checkout jobs: + debug_region: + runs-on: ubuntu-latest + steps: + - name: Print AWS_REGION + run: echo ${{ vars.AWS_REGION }} terraform_process: runs-on: ubuntu-latest environment: ${{ github.event.inputs.environment }}