fix: Make keyring unique as well #44
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: "TF GH Action" | |
on: | |
- pull_request | |
env: | |
TF_PLUGIN_CACHE_DIR: ${{ github.workspace }}/.terraform.d/plugin-cache | |
jobs: | |
fmt: | |
name: "fmt" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Terraform | |
uses: hashicorp/[email protected] | |
with: | |
terraform_version: 0.15.x | |
- name: Terraform fmt | |
run: terraform fmt -recursive -write=false -check -diff . | |
continue-on-error: true | |
validate: | |
name: "validate" | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
terraform_version: [1.3.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Terraform ${{ matrix.terraform_version }} | |
uses: hashicorp/[email protected] | |
with: | |
terraform_version: ${{ matrix.terraform_version }} | |
- name: Terraform Validate Root | |
run: cd "${GITHUB_WORKSPACE}" && terraform init -backend=false && CLOUDSDK_COMPUTE_REGION=us-central1 terraform validate -no-color | |
- name: Terraform Validate Examples | |
run: for example in examples/*/; do cd "${GITHUB_WORKSPACE}/${example}" && terraform init -backend=false && CLOUDSDK_COMPUTE_REGION=us-central1 terraform validate -no-color ; done |