Add support for billing budgets to project factory (#2112)

* align factory variable name in project factory module

* tested

* align fast stage
This commit is contained in:
Ludovico Magnocavallo
2024-02-27 19:13:49 +01:00
committed by GitHub
parent a34d93fb43
commit dbabfb9ae0
14 changed files with 253 additions and 49 deletions

View File

@@ -88,8 +88,15 @@ variable "data_overrides" {
default = {}
}
variable "factory_data_path" {
description = "Path to folder with YAML project description data files."
type = string
nullable = false
variable "factories_config" {
description = "Path to folder with YAML resource description data files."
type = object({
projects_data_path = string
budgets = optional(object({
billing_account = string
budgets_data_path = string
notification_channels = optional(map(any), {})
}))
})
nullable = false
}