add support for object upload to gcs module

This commit is contained in:
Erin Horning
2023-08-10 21:43:53 -06:00
parent c5a77ebfe3
commit df1fded669
4 changed files with 71 additions and 9 deletions

View File

@@ -132,6 +132,16 @@ variable "notification_config" {
default = null
}
variable "objects_to_upload" {
description = "Objects to be uploaded to bucket"
type = map(object({
name = string
source = string
content_type = string
}))
default = {}
}
variable "prefix" {
description = "Optional prefix used to generate the bucket name."
type = string