Add count to toggle optional modules

This commit is contained in:
Arseny Chernov
2021-12-23 22:07:14 +08:00
parent 19f6127e8a
commit 6717abf0e1
5 changed files with 48 additions and 31 deletions

View File

@@ -18,6 +18,7 @@ module "test" {
source = "../../../../cloud-operations/scheduled-asset-inventory-export-bq"
billing_account = var.billing_account
cai_config = var.cai_config
cai_gcs_export = var.cai_gcs_export
file_config = var.file_config
project_create = var.project_create
project_id = var.project_id

View File

@@ -32,6 +32,11 @@ variable "cai_config" {
}
}
variable "cai_gcs_export" {
type = bool
default = true
}
variable "file_config" {
type = object({
bucket = string