Files
foxhunt/infra/modules/block-storage/variables.tf
jgrusewski 3e75afa160 infra: add OpenTofu modules for all Scaleway resources
- kapsule: cluster + 3 node pools (always-on, ci, gpu)
- object-storage: S3 bucket with 30-day sccache expiry
- registry: private Container Registry namespace
- secrets: JWT + DB password via Secret Manager
- block-storage: 100GB b_ssd for training data

All managed via Terragrunt with shared provider/backend.
Gitignore exception added for infra/*/secrets/ (TF code, not actual secrets).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 14:23:03 +01:00

17 lines
359 B
HCL

variable "zone" {
description = "Scaleway zone for the block storage volume"
type = string
}
variable "volume_name" {
description = "Name of the block storage volume"
type = string
default = "foxhunt-training-data"
}
variable "size_in_gb" {
description = "Size of the volume in GB"
type = number
default = 100
}