Skip to content

Remove dead usage of cognito #226

Remove dead usage of cognito

Remove dead usage of cognito #226

Workflow file for this run

name: 'Terraform'
on:
push:
branches:
- master
paths:
- '**/**/**/terraform.tf'
pull_request:
paths:
- '**/**/**/terraform.tf'
jobs:
terraform:
name: 'Terraform'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform Init
run: terraform init
- name: Terraform Format
run: terraform fmt -check
- name: Terraform Plan
run: terraform plan
- name: Terraform Apply
if: github.ref == 'refs/heads/master' && github.event_name == 'push'
run: terraform apply -auto-approve