-
-
Notifications
You must be signed in to change notification settings - Fork 1k
New issue
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
Support *.tofu and .*tofu.json file detection #4062
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
📝 WalkthroughWalkthroughThis pull request updates the CLI to support OpenTofu file extensions. The error message now specifies that neither Terraform (.tf) nor OpenTofu (.tofu) files were found. The file scanning function in the run command has been extended to include both *.tofu and *.tofu.json patterns. Additionally, new test cases have been added to verify the functionality for directories containing OpenTofu files alongside Terraform files. Changes
Sequence Diagram(s)sequenceDiagram
participant U as User
participant R as CheckFolderContainsTerraformCode
participant FS as FileSystem
participant E as NoTerraformFilesFound
U->>R: Initiate file check in directory
R->>FS: Search for *.tf & *.tf.json files
FS-->>R: Return Terraform file list
R->>FS: Search for *.tofu & *.tofu.json files
FS-->>R: Return OpenTofu file list
alt Files Found
R-->>U: Return success with file list
else No Files Found
R->>E: Create NoTerraformFilesFound error
E-->>R: Return error message ("...Terraform nor OpenTofu files were found")
R-->>U: Return error
end
Assessment against linked issues
Suggested reviewers
📜 Recent review detailsConfiguration used: .coderabbit.yaml 📒 Files selected for processing (3)
🧰 Additional context used📓 Path-based instructions (1)`**/*.go`: Review the Go code for quality and correctness. Make sure that the Go code follows best practices, is performant, and is easy to understand and maintain.
🔇 Additional comments (6)
✨ Finishing Touches
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. 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
Documentation and Community
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for your contribution @wazy !
Description
Fixes/implements #4061.
Glob *.tofu and *.tofu.json extensions so an error about no *.tf files doesn't occur.
Release Notes (draft)
Added support for *.tofu and *.tofu.json files to prevent error of no *.tf files detected.
Summary by CodeRabbit