chore(deps): update tflint plugin terraform-linters/tflint-ruleset-aws to v0.36.0 #2250
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
push: | |
branches: ["main"] | |
jobs: | |
pre-commit: | |
name: Pre-commit checks 🛃 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Write required openbao files | |
run: | | |
mkdir -p opentofu/openbao/cluster/.tls | |
echo 'keep' > opentofu/openbao/cluster/.tls/openbao.pem | |
echo 'keep' > opentofu/openbao/cluster/.tls/openbao-key.pem | |
echo 'keep' > opentofu/openbao/cluster/.tls/ca-chain.pem | |
- name: Validate Opentofu configuration | |
uses: dagger/dagger-for-github@v7 | |
with: | |
version: "latest" | |
verb: call | |
module: github.com/Smana/daggerverse/pre-commit-tf@pre-commit-tf/v0.1.1 | |
args: run --dir "." --tf-binary="tofu" | |
kubernetes-validation: | |
name: Kubernetes validation ☸ | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Validate Flux clusters manifests | |
uses: dagger/dagger-for-github@v7 | |
with: | |
version: "latest" | |
verb: call | |
module: github.com/Smana/daggerverse/kubeconform@kubeconform/v0.1.2 | |
args: validate --manifests "./clusters" --exclude ".github/*,opentofu/*" --catalog | |
- name: Validate Kubernetes manifests (Kustomize directories) | |
uses: dagger/dagger-for-github@v7 | |
with: | |
version: "latest" | |
verb: call | |
module: github.com/Smana/daggerverse/kubeconform@kubeconform/v0.1.2 | |
args: validate --manifests "." --exclude ".github/*,opentofu/*" --env "domain_name:cluster.local,cluster_name:foobar,region:eu-west-3" --kustomize --flux --catalog |