Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GCS Bucket upload support #871

Merged
merged 9 commits into from
Nov 4, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
better descriptions
  • Loading branch information
Bslabe123 committed Nov 1, 2024
commit 03c248e2f6706ea70e0c7adb8fca0b721265a901
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ variable "models" {
}

variable "gcs_output" {
description = "Bucket name and filepath for storing results, if filepath not specified, results uploaded to root of bucket"
description = "Bucket name and filepath for storing json results, if filepath not specified, results uploaded to root of bucket"
type = object({
bucket = string
filepath = optional(string)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ variable "output_bucket" {
}

variable "output_bucket_filepath" {
description = "Where in bucket to store results, will upload to root of bucket if not specified"
description = "Where in bucket to store json results, will upload to root of bucket if not specified"
type = string
nullable = true
}
Expand Down