chore(deps): update actions/checkout digest to 3b9b8c8 #178
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: 52.Terraform - Keycloak | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- terraform/keycloak/** | |
- .github/workflows/terraform-keycloak.yml | |
pull_request: | |
paths: | |
- terraform/keycloak/** | |
- .github/workflows/terraform-keycloak.yml | |
env: | |
TF_VERSION: 1.5.7 | |
jobs: | |
terraform: | |
runs-on: ubuntu-22.04 | |
timeout-minutes: 5 | |
environment: | |
name: tf-keycloak | |
steps: | |
- uses: hmarr/debug-action@f7318c783045ac39ed9bb497e22ce835fdafbfe6 | |
- uses: actions/checkout@3b9b8c884f6b4bb4d5be2779c26374abadae0871 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@4fab0119030f0b41039f372591efdbf7dbcd8fd8 | |
with: | |
terraform_version: ${{ env.TF_VERSION }} | |
- name: Authenticate and set context | |
uses: redhat-actions/oc-login@dfbd9912672664f9df2023c1c16e07bcf306043c | |
with: | |
openshift_server_url: ${{ secrets.OPENSHIFT_SERVER }} | |
openshift_token: ${{ secrets.OPENSHIFT_TOKEN }} | |
namespace: ${{ vars.OPENSHIFT_NAMESPACE }} | |
insecure_skip_tls_verify: true | |
- name: Terraform Format | |
id: fmt | |
run: terraform fmt -check | |
working-directory: ./terraform/keycloak | |
- name: Terraform Variables | |
run: | | |
cat >"ci.auto.tfvars" <<EOF | |
dev_client_secret = "${{ secrets.DEV_CLIENT_SECRET }}" | |
test_client_secret = "${{ secrets.TEST_CLIENT_SECRET }}" | |
prod_client_secret = "${{ secrets.PROD_CLIENT_SECRET }}" | |
EOF | |
working-directory: ./terraform/keycloak | |
- name: Terraform Init | |
id: init | |
run: terraform init -upgrade | |
working-directory: ./terraform/keycloak | |
- name: Terraform Plan | |
id: plan | |
if: github.event_name == 'pull_request' | |
run: terraform plan -no-color | |
working-directory: ./terraform/keycloak | |
continue-on-error: true | |
- name: Create Comment | |
uses: actions/github-script@4020e461acd7a80762cdfff123a1fde368246fa4 | |
if: github.event_name == 'pull_request' | |
env: | |
PLAN: "terraform\n${{ steps.plan.outputs.stdout }}" | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
script: | | |
const output = `#### Terraform Format and Style 🖌\`${{ steps.fmt.outcome }}\` | |
#### Terraform Initialization ⚙️\`${{ steps.init.outcome }}\` | |
#### Terraform Plan 📖\`${{ steps.plan.outcome }}\` | |
<details><summary>Show Plan</summary> | |
\`\`\`${process.env.PLAN}\`\`\` | |
</details> | |
*Pusher: @${{ github.actor }}, Action: \`${{ github.event_name }}\`*`; | |
github.rest.issues.createComment({ | |
issue_number: context.issue.number, | |
owner: context.repo.owner, | |
repo: context.repo.repo, | |
body: output | |
}) | |
- name: Terraform Plan Status | |
if: steps.plan.outcome == 'failure' | |
run: exit 1 | |
- name: Terraform Apply | |
if: github.event_name == 'push' | |
run: terraform apply -auto-approve | |
working-directory: ./terraform/keycloak |