-
Notifications
You must be signed in to change notification settings - Fork 832
Adding changes for Fleet v4.83.1 #43357
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -68,7 +68,7 @@ variable "redis_mem" { | |||||||||||||||||||||
| } | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| variable "image" { | ||||||||||||||||||||||
| default = "fleetdm/fleet:v4.83.0" | ||||||||||||||||||||||
| default = "fleetdm/fleet:v4.83.1" | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
| variable "software_installers_bucket_name" { | ||||||||||||||||||||||
|
Comment on lines
70
to
73
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing closing brace in Line 70 opens 🐛 Proposed fix variable "image" {
default = "fleetdm/fleet:v4.83.1"
+}
variable "software_installers_bucket_name" {
default = "fleet-software-installers"
}📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @georgekarrv Why are they both flagging this? I know you're not changing that line so it must be fine, but I wonder if the indentation is throwing them off? |
||||||||||||||||||||||
| default = "fleet-software-installers" | ||||||||||||||||||||||
|
|
||||||||||||||||||||||
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.
variable "image"is missing its closing}before the nextvariableblock begins, which will make this Terraform file fail to parse. Close theimagevariable block before declaringsoftware_installers_bucket_name.