Add httpreq-http_timeout to lego config #61
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
| # Copyright 2025 Canonical Ltd. | |
| # See LICENSE file for licensing details. | |
| name: Terraform files test | |
| on: | |
| pull_request: | |
| paths: | |
| - 'deployments/**' | |
| permissions: | |
| contents: read | |
| jobs: | |
| validate: | |
| name: Validate terraform configuration files | |
| runs-on: ubuntu-latest | |
| env: | |
| WORKING_DIR: 'deployments' | |
| steps: | |
| - name: Check out code | |
| uses: actions/checkout@v6.0.0 | |
| - name: Setup Terraform | |
| uses: hashicorp/setup-terraform@v3.1.2 | |
| - name: Run terraform fmt | |
| run: terraform fmt -check -recursive | |
| working-directory: ${{env.WORKING_DIR}} | |
| - name: Setup Tflint | |
| uses: terraform-linters/setup-tflint@v6.2.1 | |
| with: | |
| tflint_wrapper_enabled: true | |
| - name: Run tflint | |
| run: | | |
| tflint --version | |
| tflint --init | |
| tflint -f compact --recursive | |
| working-directory: ${{env.WORKING_DIR}} |