Add asset_search to folder, project, and organization modules. (#3707)

This commit is contained in:
Julio Castillo
2026-02-05 12:56:27 +01:00
committed by GitHub
parent b2cbd7a3c6
commit 7d33becacf
12 changed files with 254 additions and 103 deletions

View File

@@ -48,6 +48,16 @@ variable "asset_feeds" {
}
}
variable "asset_search" {
description = "Cloud Asset Inventory search configurations."
type = map(object({
asset_types = list(string)
query = optional(string)
}))
default = {}
nullable = false
}
variable "auto_create_network" {
description = "Whether to create the default network for the project."
type = bool