Create an egress proxy module #21
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: Terraform Test | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Integration test | |
strategy: | |
fail-fast: false | |
max-parallel: 2 | |
matrix: | |
module: ["s3", "database", "redis", "cg_space", "domain", "clamav"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: terraform test ${{ matrix.module }} | |
uses: dflook/terraform-test@v1 | |
env: | |
CF_USER: ${{ secrets.CF_USER }} | |
CF_PASSWORD: ${{ secrets.CF_PASSWORD }} | |
with: | |
path: ${{ matrix.module }} | |
test-egress-proxy: | |
runs-on: ubuntu-latest | |
name: Egress proxy integration test | |
env: | |
TERRAFORM_PRE_RUN: | | |
apt-get update | |
apt-get install -y zip | |
steps: | |
- uses: actions/checkout@v4 | |
- name: terraform test egress_proxy | |
uses: dflook/terraform-test@v1 | |
with: | |
path: egress_proxy |