Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion main/readme_test/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,10 @@ variable "input" {

variable "replace" {

}

}

variable "copilot" {


}
Comment on lines +15 to +18
Copy link

Copilot AI Aug 26, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The 'copilot' variable is missing required attributes like type, description, and potentially default value. Terraform variables should include at minimum a type and description for clarity and usability.

Suggested change
variable "copilot" {
}
variable "copilot" {
type = string
description = "Copilot configuration or flag. Specify as a string."
}

Copilot uses AI. Check for mistakes.