- 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>
7 lines
164 B
HCL
7 lines
164 B
HCL
resource "scaleway_instance_volume" "training_data" {
|
|
name = var.volume_name
|
|
type = "b_ssd"
|
|
size_in_gb = var.size_in_gb
|
|
zone = var.zone
|
|
}
|