fix: Remove deprecated Terraform syntax#64
Conversation
Automated fix using tflint --fix to resolve deprecated HCL syntax:
- terraform_deprecated_interpolation: Replace "${var.x}" with var.x
- terraform_deprecated_index: Replace .0 with [0]
- terraform_deprecated_lookup: Replace deprecated lookup() usage
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. ✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
This pull request was marked as a work in progress and looks abandoned. |
Why
Deprecated HCL syntax triggers linting warnings and will eventually be removed in future Terraform versions. Cleaning these up improves code quality, maintainability, and ensures forward compatibility.
What
Automated fixes applied via
tflint --fixwith the following rules enabled:terraform_deprecated_interpolation"${var.foo}"→var.footerraform_deprecated_indexlist.0→list[0]terraform_deprecated_lookuplookup()callslookup(map, key)→map[key]References