add support for tags to GCS module (#2213)

This commit is contained in:
Ludovico Magnocavallo
2024-04-11 15:19:05 +02:00
committed by GitHub
parent 825bfca66d
commit 3138eb9025
4 changed files with 167 additions and 10 deletions

View File

@@ -258,6 +258,12 @@ variable "storage_class" {
}
}
variable "tag_bindings" {
description = "Tag bindings for this folder, in key => tag value id format."
type = map(string)
default = null
}
variable "uniform_bucket_level_access" {
description = "Allow using object ACLs (false) or not (true, this is the recommended behavior) , defaults to true (which is the recommended practice, but not the behavior of storage API)."
type = bool