diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 0a727eb..2b806d6 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -297,8 +297,8 @@ jobs: - name: Build provider run: | make build - make terraformrc - trc="${PWD}/.terraformrc" + make tofurc + trc="${PWD}/.tofurc" echo "TF_CLI_CONFIG_FILE=${trc}" >> "$GITHUB_ENV" - name: Apply Terraform run: | diff --git a/Makefile b/Makefile index 5e82a20..6c419ec 100644 --- a/Makefile +++ b/Makefile @@ -60,3 +60,6 @@ lint: terraformrc: cat .terraformrc.tmpl | envsubst > .terraformrc + +tofurc: + cat .terraformrc.tmpl | envsubst > .tofurc