Skip to content

Commit

Permalink
fix(cost-control): budgets cost filter not required (#46)
Browse files Browse the repository at this point in the history
* fix(cost-control): budgets cost filter shouldn't be a requried field

* fix(cost-control): cost_filter default value is a list
  • Loading branch information
p5 authored Sep 30, 2024
1 parent b6e8ab1 commit 224a7c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/aws/cost-control/budgets/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ variable "budgets" {
include_upfront = false
use_blended = false
})
cost_filter = list(object({
cost_filter = optional(list(object({
name = string
values = list(string)
}))
})), [])
tags = optional(map(string), {})
}))
default = {}
Expand Down

0 comments on commit 224a7c0

Please sign in to comment.