r/aws_sqs_queue: Fix timeout error on creation if sqs_managed_sse_enabled=true
and kms_data_key_reuse_period_seconds
is configured
#1995
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: Acceptance Test Embedded Configuration Linting | |
on: | |
push: | |
branches: | |
- main | |
- "release/**" | |
pull_request: | |
paths: | |
- .github/workflows/acctest-terraform-embedded-lint.yml | |
- .ci/.tflint.hcl | |
- .ci/scripts/validate-terraform.sh | |
- .ci/tools/go.mod | |
- go.sum | |
- 'internal/service/**/*_test.go' | |
## NOTE: !!! | |
## When changing these workflows, ensure that the following is updated: | |
## - Documentation: docs/continuous-integration.md | |
## - Documentation: docs/makefile-cheat-sheet.md | |
## - Makefile: ./GNUmakefile | |
jobs: | |
terrafmt: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version-file: go.mod | |
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }} | |
- run: cd .ci/tools && go install github.com/katbyte/terrafmt | |
- run: | | |
find ./internal/service -type f -name '*_test.go' \ | |
| sort -u \ | |
| xargs -I {} terrafmt diff --check --fmtcompat {} | |
tflint: | |
name: Validate Acceptance Test Terraform | |
runs-on: custom-linux-xl | |
strategy: | |
matrix: | |
path: ['[a-f]', '[g-z]'] | |
env: | |
TEST_FILES_PARTITION: '\./internal/service/${{ matrix.path }}.*/.*_test\.go' | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version-file: go.mod | |
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-pkg-mod-${{ hashFiles('go.sum') }} | |
- uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4.2.0 | |
name: Cache plugin dir | |
continue-on-error: true | |
timeout-minutes: 2 | |
with: | |
path: ~/.tflint.d/plugins | |
key: ${{ runner.os }}-tflint-${{ hashFiles('.ci/.tflint.hcl') }} | |
- run: cd .ci/tools && go install github.com/katbyte/terrafmt | |
- run: cd .ci/tools && go install github.com/terraform-linters/tflint | |
- run: tflint --config .ci/.tflint.hcl --init | |
- run: echo -n "File count $( find ./internal -type f -regextype egrep -regex ${{ env.TEST_FILES_PARTITION }} | wc -l | xargs )" | |
- run: | | |
find ./internal -type f -regextype egrep -regex ${{ env.TEST_FILES_PARTITION }} \ | |
| .ci/scripts/validate-terraform.sh |