Revert "Decouple the ´apiary_log_bucket´ variable for s3 logs and s3 … #1578
Workflow file for this run
This file contains hidden or 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 CI | |
| on: [push, pull_request] | |
| jobs: | |
| test: | |
| name: Terraform Checks | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v2 | |
| - name: Setup | |
| uses: hashicorp/setup-terraform@v1.3.2 | |
| with: | |
| terraform_version: 0.12.31 | |
| - name: Init | |
| run: terraform init -backend=false | |
| - name: Validate | |
| run: terraform validate | |
| env: | |
| AWS_DEFAULT_REGION: us-west-1 |