We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Terraform 1.1 introduces a new syntax element - moved block. Currently config-lint cannot parse files with this block.
moved
config-lint
Input file:
variable "vpc_id" { type = string } moved { from = "x" to = "y" }
Error:
[ { "AssertionMessage": "x.tf:5,1-6: Unsupported block type; Blocks of type \"moved\" are not expected here.", "Category": "load", "CreatedAt": "2022-01-26T07:57:21Z", "Filename": "x.tf", "LineNumber": 0, "ResourceID": "x.tf", "ResourceType": "file", "RuleID": "FILE_LOAD", "RuleMessage": "Unable to load file", "Status": "FAILURE" } ]
Config-lint version: 1.1.0
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Terraform 1.1 introduces a new syntax element -
moved
block. Currentlyconfig-lint
cannot parse files with this block.Input file:
Error:
Config-lint version: 1.1.0
The text was updated successfully, but these errors were encountered: