43 lines
955 B
YAML
43 lines
955 B
YAML
name: 'Terraform'
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
pull_request:
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
terraform:
|
|
name: 'Terraform'
|
|
runs-on: ubuntu-latest
|
|
environment: production
|
|
|
|
defaults:
|
|
run:
|
|
shell: bash
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup Terraform
|
|
uses: hashicorp/setup-terraform@v2
|
|
with:
|
|
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
|
|
|
|
- name: Terraform Init
|
|
run: terraform init
|
|
working-directory: ./terraform/authentik
|
|
|
|
- name: Terraform Format
|
|
run: terraform fmt -check
|
|
continue-on-error: true
|
|
working-directory: ./terraform/authentik
|
|
|
|
- name: Terraform Apply
|
|
run: terraform apply -var-file proxy-apps.tfvars -var-file oauth2-apps.tfvars -var-file terraform.tfvars -var-file groups.tfvars -input=false -auto-approve -parallelism=100
|
|
working-directory: ./terraform/authentik
|
|
|