Terraform init: Unsupported block type; Blocks of type "moved" are not expected here
ShrishmaL7 opened this issue · 2 comments
ShrishmaL7 commented
- terrascan version: v0.14.4
Description
I am facing similar issue as like described here:
#1182
Error: Unsupported block type
on .terraform/modules/website_with_cname.logs/moved.tf line 7:
7: moved {
Blocks of type "moved" are not expected here.
lisenet commented
Similar issue here using Terrascan v1.18.5 on Ubuntu 20.04 LTS.
$ terraform version
Terraform v1.6.5
on linux_amd64
$ terrascan version
version: v1.18.5
$ terrascan scan -i terraform -f resources-codepipeline/s3.tf
2023-12-06T10:47:13.043Z error cli/run.go:141 scan run failed{error 26 0 failed to load iac file 'resources-codepipeline/s3.tf'. error:
resources-codepipeline/s3.tf:49,1-6: Unsupported block type; Blocks of type "moved" are not expected here.
}
Example Terraform code causing the issue:
moved {
from = aws_s3_bucket_acl.codepipeline_bucket_acl
to = aws_s3_bucket_acl.codepipeline_bucket
}
This is blocking me from using Terrascan as there is no way to skip the Terraform moved block check.