17 lines
410 B
HCL
17 lines
410 B
HCL
variable "region" {
|
|
description = "Scaleway region for the object storage bucket"
|
|
type = string
|
|
}
|
|
|
|
variable "bucket_name" {
|
|
description = "Name of the S3-compatible object storage bucket"
|
|
type = string
|
|
default = "foxhunt-artifacts"
|
|
}
|
|
|
|
variable "bucket_name_prefix" {
|
|
description = "Prefix for additional buckets (e.g., foxhunt)"
|
|
type = string
|
|
default = "foxhunt"
|
|
}
|