From 946c5bd75492ac552f60741cf301d058668b091f Mon Sep 17 00:00:00 2001 From: Jocelo Date: Wed, 29 Oct 2025 06:24:17 -0400 Subject: [PATCH 1/3] test --- prod/main.tf | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/prod/main.tf b/prod/main.tf index d5d0f80..0b57c56 100644 --- a/prod/main.tf +++ b/prod/main.tf @@ -13,4 +13,7 @@ terraform { key = "terraform/state" region = "us-east-1" } -} \ No newline at end of file + + +} + From 2177ae1620d73b9fa2796e188876810dda963f20 Mon Sep 17 00:00:00 2001 From: Alfredo Alonso Date: Thu, 30 Oct 2025 08:58:21 -0400 Subject: [PATCH 2/3] Update digger.yml --- digger.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/digger.yml b/digger.yml index 2099587..82a9520 100644 --- a/digger.yml +++ b/digger.yml @@ -1,3 +1,8 @@ +plan_storage: + type: s3 + bucket: amzn-digger-demo-s3 + region: us-east-1 + projects: - name: production - dir: prod \ No newline at end of file + dir: prod From 5ec50cb008d4b2bdaad37b86d3ec1c2d3ac7bca3 Mon Sep 17 00:00:00 2001 From: Alfredo Alonso Date: Thu, 30 Oct 2025 09:20:15 -0400 Subject: [PATCH 3/3] Update digger_workflow.yml --- .github/workflows/digger_workflow.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/digger_workflow.yml b/.github/workflows/digger_workflow.yml index f4fdefe..1de2815 100644 --- a/.github/workflows/digger_workflow.yml +++ b/.github/workflows/digger_workflow.yml @@ -22,7 +22,16 @@ jobs: statuses: write # required to validate combined PR status steps: - - uses: actions/checkout@v4 + - name: Checkout + uses: actions/checkout@v4 + + - name: configure AWS credentials + uses: aws-actions/configure-aws-credencials@v2 + with: + aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }} + aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} + aws-region: ${{ secrets.AWS_ACCESS_KEY }} + - name: ${{ fromJSON(github.event.inputs.spec).job_id }} run: echo "job id ${{ fromJSON(github.event.inputs.spec).job_id }}" - uses: diggerhq/digger@vLatest @@ -35,4 +44,4 @@ jobs: aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }} env: GITHUB_CONTEXT: ${{ toJson(github) }} - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}