Skip to content

Commit

Permalink
Fixes acceptance test Terraform linting
Browse files Browse the repository at this point in the history
  • Loading branch information
gdavison committed Feb 2, 2021
1 parent 075f130 commit 35cdc7e
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/acctest-terraform-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
- run: echo "GO_VERSION=$(cat .go-version)" >> $GITHUB_ENV
- uses: actions/setup-go@v2
with:
go-version: ${{ steps.go-version.outputs.content }}
go-version: ${{ env.GO_VERSION }}
- uses: actions/cache@v2
continue-on-error: true
timeout-minutes: 2
Expand Down
2 changes: 1 addition & 1 deletion aws/resource_aws_lakeformation_permissions_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ resource "aws_glue_catalog_table" "test" {
}
resource "aws_lakeformation_data_lake_settings" "test" {
// this will result in multiple permissions for iam role
# this will result in multiple permissions for iam role
admins = [aws_iam_role.test.arn, data.aws_caller_identity.current.arn]
}
Expand Down
1 change: 0 additions & 1 deletion scripts/validate-terraform.sh
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ rules=(
"--only=aws_route_specified_multiple_targets"
)
while read -r filename ; do
echo "$filename"
block_number=0

while IFS= read -r block ; do
Expand Down

0 comments on commit 35cdc7e

Please sign in to comment.