Skip to content

chore(deps): update terraform hashicorp/terraform to v1.9.4 #254

chore(deps): update terraform hashicorp/terraform to v1.9.4

chore(deps): update terraform hashicorp/terraform to v1.9.4 #254

Workflow file for this run

name: QA
on:
push:
branches:
- main
- renovate/*
permissions:
contents: read
id-token: write
jobs:
qa:
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4
- uses: hashicorp/setup-terraform@651471c36a6092792c552e8b1bef71e592b462d8 # v3
with:
# renovate: datasource=github-releases depName=hashicorp/terraform versioning=hashicorp
terraform_version: "1.8.2"
- name: Format Checkout
run: terraform fmt -check -diff -recursive terraform
- name: Run tflint
run: |
podman run --rm -v $(pwd):/data -t ghcr.io/terraform-linters/tflint --init
podman run --rm -v $(pwd):/data -t ghcr.io/terraform-linters/tflint --recursive
- name: Environment Info
run: |
echo "ref: ${{ github.ref }}"
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@e3dd6a429d7300a6a4c196c26e071d42e0343502 # v4
with:
role-to-assume: arn:aws:iam::022327457572:role/ks-infrastructure-maintainer
aws-region: eu-west-1
- name: Terraform Init
run: terraform init
working-directory: terraform
- name: Terraform Plan
run: terraform plan -lock-timeout=20m
working-directory: terraform