Add support for Log Analytics on logging-bucket module and bump provider version (#1423)

* first commit

* Bump provider versions

* Fix tests
This commit is contained in:
lcaggio
2023-06-07 23:23:28 +02:00
committed by GitHub
parent 7bd6e5d57b
commit 39b27ac25e
101 changed files with 297 additions and 206 deletions

View File

@@ -37,6 +37,16 @@ variable "location" {
default = "global"
}
variable "log_analytics" {
description = "Enable and configure Analytics Log."
type = object({
enable = optional(bool, false)
dataset_link_id = optional(string)
})
nullable = false
default = {}
}
variable "parent" {
description = "ID of the parentresource containing the bucket in the format 'project_id' 'folders/folder_id', 'organizations/organization_id' or 'billing_account_id'."
type = string