Skip to content

chore: bump AWS required provider version #25

chore: bump AWS required provider version

chore: bump AWS required provider version #25

Workflow file for this run

name: Continuous Integration
on:
pull_request:
branches:
- main
push:
branches:
- main
permissions:
contents: read
jobs:
terraform-validation:
name: Terraform Validation
runs-on: ubuntu-latest
strategy:
matrix: { env: ["aws/s3-bucket-object", "aws/vpc-endpoint"] }
defaults:
run:
working-directory: "${{ matrix.env }}"
steps:
- name: Checkout
id: checkout
uses: actions/checkout@v4
- name: Setup Terraform
id: setup-terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_wrapper: false
- name: Terraform Format
run: terraform fmt -check
- name: Terraform Init
run: terraform init
- name: Terraform Validate
run: terraform validate -no-color