Skip to content

Task 1: AWS Account Configuration #8

Task 1: AWS Account Configuration

Task 1: AWS Account Configuration #8

Workflow file for this run

name: Terraform Workflow
permissions:
id-token: write
contents: read
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
terraform-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
terraform_version: 1.9.6
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/GithubActionsRole
aws-region: us-east-1
role-duration-seconds: 1200
- name: Terraform Init
run: terraform init
- name: Terraform Plan
run: terraform plan
terraform-apply:
runs-on: ubuntu-latest
needs: terraform-plan

Check failure on line 40 in .github/workflows/terraform.yml

View workflow run for this annotation

GitHub Actions / Terraform Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/terraform.yml (Line: 40, Col: 12): Job 'terraform-apply' depends on unknown job 'terraform-plan'.
if: github.ref == 'refs/heads/main'
steps:
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.9.6
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: arn:aws:iam::${{ secrets.AWS_ACCOUNT_ID }}:role/GithubActionsRole
role-duration-seconds: 1200
aws-region: us-east-1
- name: Terraform Init
run: terraform init
- name: Terraform Apply
run: terraform apply -auto-approve