Skip to content

Commit

Permalink
refactor: re-add default filter for almalinux
Browse files Browse the repository at this point in the history
  • Loading branch information
luqmanbazran committed Oct 17, 2024
1 parent d012719 commit cec26fa
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -140,5 +140,20 @@ variable "image_filter_groups" {
name = string
values = list(string)
})))
default = null
default = {
"alma-ami" = [
{
name = "is-public"
values = ["true"]
},
{
name = "name"
values = ["AlmaLinux OS*"]
},
{
name = "state"
values = ["available"]
}
]
}
}

0 comments on commit cec26fa

Please sign in to comment.