IA-4470: Update easy fargate module variable file and documentation. #74
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: 'Integration Tests' | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| defaults: | |
| run: | |
| shell: 'bash' | |
| permissions: | |
| contents: read | |
| id-token: write | |
| jobs: | |
| format: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: 'checkout' | |
| uses: 'actions/checkout@v3' | |
| - name: 'Install Terraform' | |
| uses: 'hashicorp/setup-terraform@v2' | |
| with: | |
| terraform_version: '1.9.5' | |
| - name: 'check formatting' | |
| run: | | |
| terraform fmt -check -recursive | |
| validate: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: 'checkout' | |
| uses: 'actions/checkout@v3' | |
| - name: 'Install Terraform' | |
| uses: 'hashicorp/setup-terraform@v2' | |
| with: | |
| terraform_version: '1.9.5' | |
| - name: 'validate module' | |
| run: | | |
| terraform init | |
| terraform validate | |
| spellcheck: | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: 'checkout' | |
| uses: 'actions/checkout@v3' | |
| # perform a spellcheck on the markdown | |
| # https://github.com/marketplace/actions/github-spellcheck-action | |
| - name: 'Spellcheck' | |
| uses: 'rojopolis/[email protected]' | |
| with: | |
| source_files: 'CHANGELOG.md CONTRIBUTING.md LICENSE.md README.md' | |
| task_name: 'Markdown' |