Add support for typed maps in autogen (#3833) #8506
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: Examples Checks | |
| # Runs terraform linting and validation commands when examples are modified. Triggered in pull requests and merged commits to master. | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - master-v1 | |
| pull_request: | |
| workflow_dispatch: | |
| env: | |
| AWS_DEFAULT_REGION: us-west-2 | |
| jobs: | |
| tf-validate: | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 | |
| with: | |
| go-version-file: 'go.mod' | |
| - uses: hashicorp/setup-terraform@b9cd54a3c349d3f38e8881555d616ced269862dd | |
| with: | |
| terraform_version: '1.13.x' | |
| terraform_wrapper: false | |
| - name: tf-validate | |
| run: make tools tf-validate | |
| tflint: | |
| runs-on: ubuntu-latest | |
| permissions: {} | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - uses: actions/setup-go@44694675825211faa026b3c33043df3e48a5fa00 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: tflint | |
| run: | | |
| echo "::add-matcher::.github/tflint-matcher.json" | |
| make tools tflint |