Skip to content

Bump hashicorp/aws from 5.66.0 to 5.67.0 in /infra/localstack-services #751

Bump hashicorp/aws from 5.66.0 to 5.67.0 in /infra/localstack-services

Bump hashicorp/aws from 5.66.0 to 5.67.0 in /infra/localstack-services #751

Workflow file for this run

name: "Terraform"
on:
push:
branches:
- main
pull_request:
jobs:
terraform:
name: "Terraform"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Terraform
uses: hashicorp/setup-terraform@v3
with:
terraform_version: 1.4.2
- name: Terraform Format
id: fmt
run: terraform fmt -check
- name: Terraform Init infra
id: init-infra
working-directory: ./infra
run: terraform init
- name: Terraform Validate infra
id: validate-infra
working-directory: ./infra
run: terraform validate -no-color
- name: Terraform Init localstack-services
id: init-localstack-services
working-directory: ./infra/localstack-services
run: terraform init
- name: Terraform Validate localstack-services
id: validate-localstack-services
working-directory: ./infra/localstack-services
run: terraform validate -no-color