feat: module ci with terraform test #11
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 TF Test" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
types: [opened, synchronize, reopened] | |
workflow_dispatch: # allows manual build | |
env: | |
ARM_TENANT_ID: ${{ secrets.REPO_AZURE_DSB_TENANT_ID }} | |
ARM_SUBSCRIPTION_ID: ${{ secrets.REPO_AZURE_SUBSCRIPTION_ID }} | |
ARM_CLIENT_ID: ${{ secrets.REPO_AZURE_TERRAFORM_USER_SERVICE_PRINCIPAL }} | |
ARM_USE_OIDC: true | |
ARM_USE_AZUREAD: true | |
TF_IN_AUTOMATION: true | |
jobs: | |
tf: | |
uses: dsb-norge/github-actions-terraform/.github/workflows/terraform-module-ci.yaml@tf-test | |
secrets: inherit | |
permissions: | |
contents: read # required for checkout action. | |
id-token: write # required for Azre passwodless login | |
pull-requests: write # required for commenting on PR | |
with: | |
terraform-version: "1.9.x" | |
tflint-version: "v0.53.0" |