Skip to content

add_staging_config

add_staging_config #15

Workflow file for this run

name: Tofu Plan
on:
workflow_dispatch:
push:
paths:
- tofu/**
- .github/workflows/sandbox_tofu.yml
- .github/actions/plan_tofu/action.yml
permissions:
id-token: write
contents: read
env:
AWS_REGION: us-east-1
jobs:
terraform_plan:
runs-on: ubuntu-latest
steps:
- name: Configure aws credentials
uses: aws-actions/configure-aws-credentials@v2
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: ${{ env.AWS_REGION }}
- uses: actions/checkout@v4
- name: Tofu Plan
id: plan
uses: ./.github/actions/plan_tofu
with:
tofu_version: 1.6.2
working_directory: './tofu/sandbox'